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