Uses of Interface
net.sourceforge.argparse4j.inf.ArgumentType
-
Packages that use ArgumentType Package Description net.sourceforge.argparse4j.impl.type net.sourceforge.argparse4j.inf net.sourceforge.argparse4j.internal -
-
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
ConstructorArgumentType<T>
Deprecated.UseReflectArgumentType
instead.class
EnumArgumentType<T extends java.lang.Enum<T>>
Deprecated.UseReflectArgumentType
instead.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
Methods in net.sourceforge.argparse4j.internal with parameters of type ArgumentType Modifier and Type Method Description <T> ArgumentImpl
ArgumentImpl. type(ArgumentType<T> type)
-