public enum CustomScalar extends Enum<CustomScalar>
| Enum Constant and Description |
|---|
ASCII |
BIGINT |
BLOB |
COUNTER |
DATE |
DECIMAL |
FLOAT |
INET |
TIME |
TIMESTAMP |
TIMEUUID |
UUID |
VARINT |
| Modifier and Type | Method and Description |
|---|---|
graphql.schema.GraphQLScalarType |
getGraphQLScalar() |
static Object |
literalValueToObject(graphql.language.Value value) |
static CustomScalar |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomScalar[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomScalar UUID
public static final CustomScalar TIMEUUID
public static final CustomScalar INET
public static final CustomScalar DATE
public static final CustomScalar BIGINT
public static final CustomScalar COUNTER
public static final CustomScalar ASCII
public static final CustomScalar DECIMAL
public static final CustomScalar VARINT
public static final CustomScalar FLOAT
public static final CustomScalar BLOB
public static final CustomScalar TIMESTAMP
public static final CustomScalar TIME
public static CustomScalar[] values()
for (CustomScalar c : CustomScalar.values()) System.out.println(c);
public static CustomScalar 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 graphql.schema.GraphQLScalarType getGraphQLScalar()
public static Object literalValueToObject(graphql.language.Value value)
Copyright © 2020. All rights reserved.