public enum TypeNodeKind extends Enum<TypeNodeKind>
| Enum Constant and Description |
|---|
ARRAY |
COLLECTION |
ENUM |
MAP |
SIMPLE |
| Modifier and Type | Method and Description |
|---|---|
static TypeNodeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeNodeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeNodeKind SIMPLE
public static final TypeNodeKind ARRAY
public static final TypeNodeKind COLLECTION
public static final TypeNodeKind MAP
public static final TypeNodeKind ENUM
public static TypeNodeKind[] values()
for (TypeNodeKind c : TypeNodeKind.values()) System.out.println(c);
public static TypeNodeKind 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 © 2016. All rights reserved.