public enum ObjectPreviewSubtype extends Enum<ObjectPreviewSubtype>
| Enum Constant and Description |
|---|
ARRAY |
DATE |
ERROR |
GENERATOR |
ITERATOR |
MAP |
NODE |
NULL |
REGEXP |
SET |
WEAKMAP |
WEAKSET |
| Modifier and Type | Method and Description |
|---|---|
static ObjectPreviewSubtype |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectPreviewSubtype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectPreviewSubtype ARRAY
public static final ObjectPreviewSubtype NULL
public static final ObjectPreviewSubtype NODE
public static final ObjectPreviewSubtype REGEXP
public static final ObjectPreviewSubtype DATE
public static final ObjectPreviewSubtype MAP
public static final ObjectPreviewSubtype SET
public static final ObjectPreviewSubtype WEAKMAP
public static final ObjectPreviewSubtype WEAKSET
public static final ObjectPreviewSubtype ITERATOR
public static final ObjectPreviewSubtype GENERATOR
public static final ObjectPreviewSubtype ERROR
public static ObjectPreviewSubtype[] values()
for (ObjectPreviewSubtype c : ObjectPreviewSubtype.values()) System.out.println(c);
public static ObjectPreviewSubtype 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.