public enum GQLScalar extends Enum<GQLScalar>
| Modifier and Type | Field and Description |
|---|---|
net.morimekta.providence.graphql.introspection.Type |
introspection |
net.morimekta.providence.descriptor.PPrimitive |
type |
| Modifier and Type | Method and Description |
|---|---|
static GQLScalar |
findByName(String name) |
static GQLScalar |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GQLScalar[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GQLScalar Boolean
public static final GQLScalar Int
public static final GQLScalar Float
public static final GQLScalar String
public static final GQLScalar ID
public final net.morimekta.providence.descriptor.PPrimitive type
public final net.morimekta.providence.graphql.introspection.Type introspection
public static GQLScalar[] values()
for (GQLScalar c : GQLScalar.values()) System.out.println(c);
public static GQLScalar 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 © 2015–2020 morimekta.net. All rights reserved.