Enum MasterGraph_FieldsEnum
- java.lang.Object
-
- java.lang.Enum<MasterGraph_FieldsEnum>
-
- org.topbraidlive.client.java.graphql.platform.MasterGraph_FieldsEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<MasterGraph_FieldsEnum>
public enum MasterGraph_FieldsEnum extends Enum<MasterGraph_FieldsEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATION_TIME_STAMP
CREATOR
DESCRIPTION
GRAPH_TYPE
ID
IS_PUBLISHED
LABEL
LAST_CHANGE_TIME_STAMP
LAST_CHANGE_USER
MAIN_CLASS
OWL_IMPORTS
PERMISSION
SUBJECT_AREAS
UNKNOWN_VALUE
URI
WORKFLOW_GRAPH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MasterGraph_FieldsEnum
fromGraphQl(String value)
String
toString()
static MasterGraph_FieldsEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static MasterGraph_FieldsEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATION_TIME_STAMP
public static final MasterGraph_FieldsEnum CREATION_TIME_STAMP
-
CREATOR
public static final MasterGraph_FieldsEnum CREATOR
-
DESCRIPTION
public static final MasterGraph_FieldsEnum DESCRIPTION
-
GRAPH_TYPE
public static final MasterGraph_FieldsEnum GRAPH_TYPE
-
ID
public static final MasterGraph_FieldsEnum ID
-
IS_PUBLISHED
public static final MasterGraph_FieldsEnum IS_PUBLISHED
-
LABEL
public static final MasterGraph_FieldsEnum LABEL
-
LAST_CHANGE_TIME_STAMP
public static final MasterGraph_FieldsEnum LAST_CHANGE_TIME_STAMP
-
LAST_CHANGE_USER
public static final MasterGraph_FieldsEnum LAST_CHANGE_USER
-
MAIN_CLASS
public static final MasterGraph_FieldsEnum MAIN_CLASS
-
OWL_IMPORTS
public static final MasterGraph_FieldsEnum OWL_IMPORTS
-
PERMISSION
public static final MasterGraph_FieldsEnum PERMISSION
-
SUBJECT_AREAS
public static final MasterGraph_FieldsEnum SUBJECT_AREAS
-
URI
public static final MasterGraph_FieldsEnum URI
-
WORKFLOW_GRAPH
public static final MasterGraph_FieldsEnum WORKFLOW_GRAPH
-
UNKNOWN_VALUE
public static final MasterGraph_FieldsEnum UNKNOWN_VALUE
-
-
Method Detail
-
values
public static MasterGraph_FieldsEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MasterGraph_FieldsEnum c : MasterGraph_FieldsEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MasterGraph_FieldsEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
fromGraphQl
public static MasterGraph_FieldsEnum fromGraphQl(String value)
-
toString
public String toString()
- Overrides:
toString
in classEnum<MasterGraph_FieldsEnum>
-
-