Package org.ehrbase.aql.sql.queryimpl
Enum JsonbEntryQuery.OTHER_ITEM
- java.lang.Object
-
- java.lang.Enum<JsonbEntryQuery.OTHER_ITEM>
-
- org.ehrbase.aql.sql.queryimpl.JsonbEntryQuery.OTHER_ITEM
-
- All Implemented Interfaces:
Serializable,Comparable<JsonbEntryQuery.OTHER_ITEM>
- Enclosing class:
- JsonbEntryQuery
public static enum JsonbEntryQuery.OTHER_ITEM extends Enum<JsonbEntryQuery.OTHER_ITEM>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OTHER_CONTEXTOTHER_DETAILS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JsonbEntryQuery.OTHER_ITEMvalueOf(String name)Returns the enum constant of this type with the specified name.static JsonbEntryQuery.OTHER_ITEM[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OTHER_DETAILS
public static final JsonbEntryQuery.OTHER_ITEM OTHER_DETAILS
-
OTHER_CONTEXT
public static final JsonbEntryQuery.OTHER_ITEM OTHER_CONTEXT
-
-
Method Detail
-
values
public static JsonbEntryQuery.OTHER_ITEM[] 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 (JsonbEntryQuery.OTHER_ITEM c : JsonbEntryQuery.OTHER_ITEM.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JsonbEntryQuery.OTHER_ITEM 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
-
-