public enum GQLScalarTypeEnum extends Enum<GQLScalarTypeEnum>
| Enum Constant and Description |
|---|
BIG_DECIMAL |
BIG_INTEGER |
BOOLEAN |
BYTE |
CHAR |
DATE |
FILE |
FLOAT |
ID |
INSTANT |
INT |
LOCAL_DATE |
LOCAL_DATE_TIME |
LONG |
SHORT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static GQLScalarTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GQLScalarTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GQLScalarTypeEnum ID
public static final GQLScalarTypeEnum INT
public static final GQLScalarTypeEnum LONG
public static final GQLScalarTypeEnum FLOAT
public static final GQLScalarTypeEnum STRING
public static final GQLScalarTypeEnum BOOLEAN
public static final GQLScalarTypeEnum BIG_INTEGER
public static final GQLScalarTypeEnum BIG_DECIMAL
public static final GQLScalarTypeEnum BYTE
public static final GQLScalarTypeEnum SHORT
public static final GQLScalarTypeEnum CHAR
public static final GQLScalarTypeEnum DATE
public static final GQLScalarTypeEnum FILE
public static final GQLScalarTypeEnum LOCAL_DATE
public static final GQLScalarTypeEnum LOCAL_DATE_TIME
public static final GQLScalarTypeEnum INSTANT
public static GQLScalarTypeEnum[] values()
for (GQLScalarTypeEnum c : GQLScalarTypeEnum.values()) System.out.println(c);
public static GQLScalarTypeEnum 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 © 2019. All rights reserved.