Package com._1c.g5.v8.dt.ql.model
Enum QuerySchemaOrderDirection
- java.lang.Object
-
- java.lang.Enum<QuerySchemaOrderDirection>
-
- com._1c.g5.v8.dt.ql.model.QuerySchemaOrderDirection
-
- All Implemented Interfaces:
Serializable
,Comparable<QuerySchemaOrderDirection>
,org.eclipse.emf.common.util.Enumerator
public enum QuerySchemaOrderDirection extends Enum<QuerySchemaOrderDirection> implements org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'Query Schema Order Direction', and utility methods for working with them.- See Also:
QlPackage.getQuerySchemaOrderDirection()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASCENDING
The 'Ascending' literal object.DESCENDING
The 'Descending' literal object.HIERARCHY_ASCENDING
The 'Hierarchy Ascending' literal object.HIERARCHY_DESCENDING
The 'Hierarchy Descending' literal object.
-
Field Summary
Fields Modifier and Type Field Description static int
ASCENDING_VALUE
The 'Ascending' literal value.static int
DESCENDING_VALUE
The 'Descending' literal value.static int
HIERARCHY_ASCENDING_VALUE
The 'Hierarchy Ascending' literal value.static int
HIERARCHY_DESCENDING_VALUE
The 'Hierarchy Descending' literal value.static List<QuerySchemaOrderDirection>
VALUES
A public read-only list of all the 'Query Schema Order Direction' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static QuerySchemaOrderDirection
get(int value)
Returns the 'Query Schema Order Direction' literal with the specified integer value.static QuerySchemaOrderDirection
get(String literal)
Returns the 'Query Schema Order Direction' literal with the specified literal value.static QuerySchemaOrderDirection
getByName(String name)
Returns the 'Query Schema Order Direction' literal with the specified name.String
getLiteral()
String
getName()
int
getValue()
String
toString()
Returns the literal value of the enumerator, which is its string representation.static QuerySchemaOrderDirection
valueOf(String name)
Returns the enum constant of this type with the specified name.static QuerySchemaOrderDirection[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASCENDING
public static final QuerySchemaOrderDirection ASCENDING
The 'Ascending' literal object.- See Also:
ASCENDING_VALUE
-
HIERARCHY_ASCENDING
public static final QuerySchemaOrderDirection HIERARCHY_ASCENDING
The 'Hierarchy Ascending' literal object.- See Also:
HIERARCHY_ASCENDING_VALUE
-
DESCENDING
public static final QuerySchemaOrderDirection DESCENDING
The 'Descending' literal object.- See Also:
DESCENDING_VALUE
-
HIERARCHY_DESCENDING
public static final QuerySchemaOrderDirection HIERARCHY_DESCENDING
The 'Hierarchy Descending' literal object.- See Also:
HIERARCHY_DESCENDING_VALUE
-
-
Field Detail
-
ASCENDING_VALUE
public static final int ASCENDING_VALUE
The 'Ascending' literal value.- See Also:
ASCENDING
, Constant Field Values
-
HIERARCHY_ASCENDING_VALUE
public static final int HIERARCHY_ASCENDING_VALUE
The 'Hierarchy Ascending' literal value.- See Also:
HIERARCHY_ASCENDING
, Constant Field Values
-
DESCENDING_VALUE
public static final int DESCENDING_VALUE
The 'Descending' literal value.- See Also:
DESCENDING
, Constant Field Values
-
HIERARCHY_DESCENDING_VALUE
public static final int HIERARCHY_DESCENDING_VALUE
The 'Hierarchy Descending' literal value.- See Also:
HIERARCHY_DESCENDING
, Constant Field Values
-
VALUES
public static final List<QuerySchemaOrderDirection> VALUES
A public read-only list of all the 'Query Schema Order Direction' enumerators.
-
-
Method Detail
-
values
public static QuerySchemaOrderDirection[] 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 (QuerySchemaOrderDirection c : QuerySchemaOrderDirection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QuerySchemaOrderDirection 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
-
get
public static QuerySchemaOrderDirection get(String literal)
Returns the 'Query Schema Order Direction' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
public static QuerySchemaOrderDirection getByName(String name)
Returns the 'Query Schema Order Direction' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
public static QuerySchemaOrderDirection get(int value)
Returns the 'Query Schema Order Direction' literal with the specified integer value.- Parameters:
value
- the integer value.- Returns:
- the matching enumerator or
null
.
-
getValue
public int getValue()
- Specified by:
getValue
in interfaceorg.eclipse.emf.common.util.Enumerator
-
getName
public String getName()
- Specified by:
getName
in interfaceorg.eclipse.emf.common.util.Enumerator
-
getLiteral
public String getLiteral()
- Specified by:
getLiteral
in interfaceorg.eclipse.emf.common.util.Enumerator
-
toString
public String toString()
Returns the literal value of the enumerator, which is its string representation.- Overrides:
toString
in classEnum<QuerySchemaOrderDirection>
-
-