public enum ValueKind extends Enum<ValueKind>
| Enum Constant and Description |
|---|
Array |
Collection |
Map |
Null |
Object |
Primitive |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isSpecial() |
void |
setSpecial(boolean special) |
static ValueKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueKind Null
public static final ValueKind Primitive
public static final ValueKind Object
public static final ValueKind Array
public static final ValueKind Collection
public static final ValueKind Map
public static ValueKind[] values()
for (ValueKind c : ValueKind.values()) System.out.println(c);
public static ValueKind 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 nullpublic boolean isSpecial()
public void setSpecial(boolean special)
Copyright © 2018. All rights reserved.