Package org.ehrbase.aql.sql.queryimpl
Enum IQueryImpl.Clause
- java.lang.Object
-
- java.lang.Enum<IQueryImpl.Clause>
-
- org.ehrbase.aql.sql.queryimpl.IQueryImpl.Clause
-
- All Implemented Interfaces:
Serializable,Comparable<IQueryImpl.Clause>
- Enclosing interface:
- IQueryImpl
public static enum IQueryImpl.Clause extends Enum<IQueryImpl.Clause>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IQueryImpl.ClausevalueOf(String name)Returns the enum constant of this type with the specified name.static IQueryImpl.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 IQueryImpl.Clause SELECT
-
WHERE
public static final IQueryImpl.Clause WHERE
-
ORDERBY
public static final IQueryImpl.Clause ORDERBY
-
FROM
public static final IQueryImpl.Clause FROM
-
-
Method Detail
-
values
public static IQueryImpl.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 (IQueryImpl.Clause c : IQueryImpl.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 IQueryImpl.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
-
-