-
- Enclosing class:
- CommandLine.Model
public static interface CommandLine.Model.ITypeInfo
Encapculates type information for an option or parameter to make this information available both at runtime and at compile time (whenClass
values are not available). Most of the methods in this interface (but not all!) are safe to use by annotation processors.- Since:
- 4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<String>
getActualGenericTypeArguments()
Returns the names of the type arguments if this is a generic type.List<CommandLine.Model.ITypeInfo>
getAuxiliaryTypeInfos()
Returns type information of components or elements of amultivalue
type.Class<?>[]
getAuxiliaryTypes()
Returns the component class of an array, or the parameter type of a generic Collection, or the parameter types of the key and the value of a generic Map.String
getClassName()
String
getClassSimpleName()
List<String>
getEnumConstantNames()
Class<?>
getType()
Returns the class that the option or parameter value should be converted to when matched on the command line.boolean
isArray()
Returnstrue
if this type is an array multi-value type.boolean
isBoolean()
boolean
isCollection()
boolean
isEnum()
Returnstrue
ifgetType()
is an enum.boolean
isMap()
boolean
isMultiValue()
Returnstrue
ifgetType()
is an array, map or collection.boolean
isOptional()
-
-
-
Method Detail
-
isBoolean
boolean isBoolean()
-
isMultiValue
boolean isMultiValue()
Returnstrue
ifgetType()
is an array, map or collection. Note that from picocli 4.7,char[]
arrays are considered single values (similar to String) and are not treated as arrays.
-
isOptional
boolean isOptional()
- Since:
- 4.6
-
isArray
boolean isArray()
Returnstrue
if this type is an array multi-value type. Note that from picocli 4.7,char[]
arrays are considered single values (similar to String) and are not treated as arrays.
-
isCollection
boolean isCollection()
-
isMap
boolean isMap()
-
isEnum
boolean isEnum()
Returnstrue
ifgetType()
is an enum.
-
getClassName
String getClassName()
-
getClassSimpleName
String getClassSimpleName()
-
getAuxiliaryTypeInfos
List<CommandLine.Model.ITypeInfo> getAuxiliaryTypeInfos()
Returns type information of components or elements of amultivalue
type.
-
getActualGenericTypeArguments
List<String> getActualGenericTypeArguments()
Returns the names of the type arguments if this is a generic type. For example, returns["java.lang.String"]
if this type isList<String>
.
-
getType
Class<?> getType()
Returns the class that the option or parameter value should be converted to when matched on the command line. This method is not safe for annotation processors to use.- Returns:
- the class that the option or parameter value should be converted to
-
getAuxiliaryTypes
Class<?>[] getAuxiliaryTypes()
Returns the component class of an array, or the parameter type of a generic Collection, or the parameter types of the key and the value of a generic Map. This method is not safe for annotation processors to use.- Returns:
- the component type or types of an array, Collection or Map type
-
-