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