Object |
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.
|
Boolean |
ArgumentsAccessor.getBoolean(int index) |
Get the value of the argument at the given index as a Boolean ,
performing automatic type conversion as necessary.
|
Byte |
ArgumentsAccessor.getByte(int index) |
Get the value of the argument at the given index as a Byte ,
performing automatic type conversion as necessary.
|
Character |
ArgumentsAccessor.getCharacter(int index) |
Get the value of the argument at the given index as a Character ,
performing automatic type conversion as necessary.
|
Double |
ArgumentsAccessor.getDouble(int index) |
Get the value of the argument at the given index as a Double ,
performing automatic type conversion as necessary.
|
Float |
ArgumentsAccessor.getFloat(int index) |
Get the value of the argument at the given index as a Float ,
performing automatic type conversion as necessary.
|
Integer |
ArgumentsAccessor.getInteger(int index) |
Get the value of the argument at the given index as a Integer ,
performing automatic type conversion as necessary.
|
Long |
ArgumentsAccessor.getLong(int index) |
Get the value of the argument at the given index as a Long ,
performing automatic type conversion as necessary.
|
Short |
ArgumentsAccessor.getShort(int index) |
Get the value of the argument at the given index as a Short ,
performing automatic type conversion as necessary.
|
String |
ArgumentsAccessor.getString(int index) |
Get the value of the argument at the given index as a String ,
performing automatic type conversion as necessary.
|