public static enum TypedLiteral.LiteralType extends Enum<TypedLiteral.LiteralType>
Enum Constant and Description |
---|
Class |
Double |
Float |
Integer |
Long |
MethodHandle |
MethodType |
NullObject |
String |
Modifier and Type | Method and Description |
---|---|
static TypedLiteral.LiteralType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypedLiteral.LiteralType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypedLiteral.LiteralType Integer
public static final TypedLiteral.LiteralType Long
public static final TypedLiteral.LiteralType Double
public static final TypedLiteral.LiteralType Float
public static final TypedLiteral.LiteralType String
public static final TypedLiteral.LiteralType NullObject
public static final TypedLiteral.LiteralType Class
public static final TypedLiteral.LiteralType MethodHandle
public static final TypedLiteral.LiteralType MethodType
public static TypedLiteral.LiteralType[] values()
for (TypedLiteral.LiteralType c : TypedLiteral.LiteralType.values()) System.out.println(c);
public static TypedLiteral.LiteralType 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 nullCopyright © 2011-2021. All Rights Reserved.