public enum ObjectType extends Enum<ObjectType>
Enum Constant and Description |
---|
BASE64 |
BOOLEAN |
BUFFER |
BYTE |
CHARACTER |
DOUBLE |
FLOAT |
HEX |
INTEGER |
JSON_ARRAY |
JSON_OBJECT |
LONG |
SHORT |
STRING |
Modifier and Type | Method and Description |
---|---|
static ObjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectType STRING
public static final ObjectType BYTE
public static final ObjectType SHORT
public static final ObjectType INTEGER
public static final ObjectType LONG
public static final ObjectType FLOAT
public static final ObjectType DOUBLE
public static final ObjectType CHARACTER
public static final ObjectType BOOLEAN
public static final ObjectType JSON_OBJECT
public static final ObjectType JSON_ARRAY
public static final ObjectType BUFFER
public static final ObjectType BASE64
public static final ObjectType HEX
public static ObjectType[] values()
for (ObjectType c : ObjectType.values()) System.out.println(c);
public static ObjectType 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 © 2021 Eclipse. All rights reserved.