Uses of Interface
net.sourceforge.argparse4j.inf.ArgumentType
-
Packages that use ArgumentType Package Description net.sourceforge.argparse4j.ext.java7 net.sourceforge.argparse4j.impl.type net.sourceforge.argparse4j.inf net.sourceforge.argparse4j.internal -
-
Uses of ArgumentType in net.sourceforge.argparse4j.ext.java7
Classes in net.sourceforge.argparse4j.ext.java7 that implement ArgumentType Modifier and Type Class Description class
PathArgumentType
ArgumentType subclass for Path type, using fluent style API. -
Uses of ArgumentType in net.sourceforge.argparse4j.impl.type
Classes in net.sourceforge.argparse4j.impl.type that implement ArgumentType Modifier and Type Class Description class
BooleanArgumentType
BooleanArgumentType provides strict conversion from input string to Boolean value.class
CaseInsensitiveEnumArgumentType<T extends java.lang.Enum<T>>
class
CaseInsensitiveEnumNameArgumentType<T extends java.lang.Enum<T>>
ArgumentType subclass for enum type using case-insensitive matching of values.class
CaseInsensitiveEnumStringArgumentType<T extends java.lang.Enum<T>>
ArgumentType subclass for enum type using case-insensitive matching of values.class
ConstructorArgumentType<T>
Deprecated.UseReflectArgumentType
instead.class
EnumArgumentType<T extends java.lang.Enum<T>>
Deprecated.UseReflectArgumentType
instead.class
EnumStringArgumentType<T extends java.lang.Enum<T>>
ArgumentType subclass for enum type.class
FileArgumentType
ArgumentType subclass for File type, using fluent style API.class
ReflectArgumentType<T>
This implementation converts String value into given type using type'svalueOf(java.lang.String)
static method or its constructor.class
StringArgumentType
Specialized to String type, just echos back given string. -
Uses of ArgumentType in net.sourceforge.argparse4j.inf
Methods in net.sourceforge.argparse4j.inf with parameters of type ArgumentType Modifier and Type Method Description <T> Argument
Argument. type(ArgumentType<T> type)
SetsArgumentType
object which converts command line argument to appropriate type. -
Uses of ArgumentType in net.sourceforge.argparse4j.internal
Fields in net.sourceforge.argparse4j.internal declared as ArgumentType Modifier and Type Field Description private ArgumentType<?>
ArgumentImpl. type_
Methods in net.sourceforge.argparse4j.internal with parameters of type ArgumentType Modifier and Type Method Description <T> ArgumentImpl
ArgumentImpl. type(ArgumentType<T> type)
-