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