Uses of Interface
org.naturalcli.IParameterType

Packages that use IParameterType
org.naturalcli Provides classes and interfaces for handling command lines human readable. 
org.naturalcli.parameters Provides classes with pre-defined parameter types for NaturalCLI. 
 

Uses of IParameterType in org.naturalcli
 

Methods in org.naturalcli that return IParameterType
 IParameterType ParameterValidator.getParameterType(java.lang.String type)
          Gets the parameter type for the given type name
 

Constructor parameters in org.naturalcli with type arguments of type IParameterType
ParameterValidator(java.util.Collection<IParameterType> parameterTypes)
          Creates a new instance of ParameterValidator
 

Uses of IParameterType in org.naturalcli.parameters
 

Classes in org.naturalcli.parameters that implement IParameterType
 class BinaryParamType
          The class implements a binary number parameter type.
 class ByteParamType
          The class implements a byte parameter type.
 class DoubleParamType
          The class implements a double parameter type.
 class EmailParamType
          The class implements an email parameter type.
 class FileParamType
          The class implements a parameter type with an existing a file name.
 class FloatParamType
          The class implements a float parameter type.
 class HexadecimalParamType
          The class implements an hexadecimal number parameter type.
 class IdentifierParamType
          The class implements an identifier parameter type.
 class IntegerParamType
          The class implements an integer parameter type.
 class LongParamType
          The class implements a long parameter type.
 class OctalParamType
          The class implements an octal number parameter type.
 class ShortParamType
          The class implements a short parameter type.
 class StringParamType
          The class implements an string parameter type.
 class URLParamType
          The class implements an URL parameter type.
 class WorkingURLParamType
          The class implements an URL which is validated parameter type.
 

Methods in org.naturalcli.parameters that return types with arguments of type IParameterType
static java.util.Set<IParameterType> DefaultParameterTypes.createSet()
          Creates a set with a default parameter types.