public enum RemoteObjectType extends Enum<RemoteObjectType>
| Enum Constant and Description |
|---|
BIGINT |
BOOLEAN |
FUNCTION |
NUMBER |
OBJECT |
STRING |
SYMBOL |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static RemoteObjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoteObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteObjectType OBJECT
public static final RemoteObjectType FUNCTION
public static final RemoteObjectType UNDEFINED
public static final RemoteObjectType STRING
public static final RemoteObjectType NUMBER
public static final RemoteObjectType BOOLEAN
public static final RemoteObjectType SYMBOL
public static final RemoteObjectType BIGINT
public static RemoteObjectType[] values()
for (RemoteObjectType c : RemoteObjectType.values()) System.out.println(c);
public static RemoteObjectType 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 © 2020. All rights reserved.