public static enum Introspection.TypeKind extends java.lang.Enum<Introspection.TypeKind>
| Enum Constant and Description |
|---|
ENUM |
INPUT_OBJECT |
INTERFACE |
LIST |
NON_NULL |
OBJECT |
SCALAR |
UNION |
| Modifier and Type | Method and Description |
|---|---|
static Introspection.TypeKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Introspection.TypeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Introspection.TypeKind SCALAR
public static final Introspection.TypeKind OBJECT
public static final Introspection.TypeKind INTERFACE
public static final Introspection.TypeKind UNION
public static final Introspection.TypeKind ENUM
public static final Introspection.TypeKind INPUT_OBJECT
public static final Introspection.TypeKind LIST
public static final Introspection.TypeKind NON_NULL
public static Introspection.TypeKind[] values()
for (Introspection.TypeKind c : Introspection.TypeKind.values()) System.out.println(c);
public static Introspection.TypeKind valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null