public interface  org.junit.jupiter.params.aggregator.ArgumentsAccessor extends java.lang.Object
{
public abstract java.lang.Object get(int) throws org.junit.jupiter.params.aggregator.ArgumentAccessException;
public abstract java.lang.Object get(int, java.lang.Class) throws org.junit.jupiter.params.aggregator.ArgumentAccessException;
public abstract java.lang.Character getCharacter(int) throws org.junit.jupiter.params.aggregator.ArgumentAccessException;
public abstract java.lang.Boolean getBoolean(int) throws org.junit.jupiter.params.aggregator.ArgumentAccessException;
public abstract java.lang.Byte getByte(int) throws org.junit.jupiter.params.aggregator.ArgumentAccessException;
public abstract java.lang.Short getShort(int) throws org.junit.jupiter.params.aggregator.ArgumentAccessException;
public abstract java.lang.Integer getInteger(int) throws org.junit.jupiter.params.aggregator.ArgumentAccessException;
public abstract java.lang.Long getLong(int) throws org.junit.jupiter.params.aggregator.ArgumentAccessException;
public abstract java.lang.Float getFloat(int) throws org.junit.jupiter.params.aggregator.ArgumentAccessException;
public abstract java.lang.Double getDouble(int) throws org.junit.jupiter.params.aggregator.ArgumentAccessException;
public abstract java.lang.String getString(int) throws org.junit.jupiter.params.aggregator.ArgumentAccessException;
public abstract int size();
public abstract java.lang.Object[] toArray();
public abstract java.util.List toList();
}