Package org.hl7.fhir.utilities.graphql
Enum Operation.OperationType
- java.lang.Object
-
- java.lang.Enum<Operation.OperationType>
-
- org.hl7.fhir.utilities.graphql.Operation.OperationType
-
- All Implemented Interfaces:
Serializable,Comparable<Operation.OperationType>
- Enclosing class:
- Operation
public static enum Operation.OperationType extends Enum<Operation.OperationType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description qglotMutationqglotQuery
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Operation.OperationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Operation.OperationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
qglotQuery
public static final Operation.OperationType qglotQuery
-
qglotMutation
public static final Operation.OperationType qglotMutation
-
-
Method Detail
-
values
public static Operation.OperationType[] 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 (Operation.OperationType c : Operation.OperationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Operation.OperationType 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
-
-