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