public enum ArgumentType extends Enum<ArgumentType>
| Enum Constant and Description |
|---|
ARRAY |
BIG_DECIMAL |
BIG_INTEGER |
BOOLEAN |
BYTE |
CUSTOM |
DOUBLE |
FLOAT |
INTEGER |
LIST |
LONG |
SHORT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
Class<?> |
getClassType() |
ArgumentSuperType |
getSuperType() |
static ArgumentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArgumentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArgumentType CUSTOM
public static final ArgumentType BOOLEAN
public static final ArgumentType STRING
public static final ArgumentType BYTE
public static final ArgumentType SHORT
public static final ArgumentType INTEGER
public static final ArgumentType FLOAT
public static final ArgumentType LONG
public static final ArgumentType DOUBLE
public static final ArgumentType BIG_DECIMAL
public static final ArgumentType BIG_INTEGER
public static final ArgumentType LIST
public static final ArgumentType ARRAY
public static ArgumentType[] values()
for (ArgumentType c : ArgumentType.values()) System.out.println(c);
public static ArgumentType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic ArgumentSuperType getSuperType()
public Class<?> getClassType()
Copyright © 2021. All rights reserved.