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