Uses of Class
org.junit.jupiter.params.aggregator.ArgumentAccessException

Packages that use ArgumentAccessException
Package
Description
The ArgumentsAggregator and ArgumentsAccessor interfaces and the AggregateWith annotation.
  • Uses of ArgumentAccessException in org.junit.jupiter.params.aggregator

    Modifier and Type
    Method
    Description
    ArgumentsAccessor.get(int index)
    Get the value of the argument at the given index as an Object.
    <T> T
    ArgumentsAccessor.get(int index, Class<T> requiredType)
    Get the value of the argument at the given index as an instance of the required type.
    ArgumentsAccessor.getBoolean(int index)
    Get the value of the argument at the given index as a Boolean, performing automatic type conversion as necessary.
    ArgumentsAccessor.getByte(int index)
    Get the value of the argument at the given index as a Byte, performing automatic type conversion as necessary.
    ArgumentsAccessor.getCharacter(int index)
    Get the value of the argument at the given index as a Character, performing automatic type conversion as necessary.
    ArgumentsAccessor.getDouble(int index)
    Get the value of the argument at the given index as a Double, performing automatic type conversion as necessary.
    ArgumentsAccessor.getFloat(int index)
    Get the value of the argument at the given index as a Float, performing automatic type conversion as necessary.
    ArgumentsAccessor.getInteger(int index)
    Get the value of the argument at the given index as a Integer, performing automatic type conversion as necessary.
    ArgumentsAccessor.getLong(int index)
    Get the value of the argument at the given index as a Long, performing automatic type conversion as necessary.
    ArgumentsAccessor.getShort(int index)
    Get the value of the argument at the given index as a Short, performing automatic type conversion as necessary.
    ArgumentsAccessor.getString(int index)
    Get the value of the argument at the given index as a String, performing automatic type conversion as necessary.