Package org.hibernate.query.sqm
Enum UnaryArithmeticOperator
- java.lang.Object
-
- java.lang.Enum<UnaryArithmeticOperator>
-
- org.hibernate.query.sqm.UnaryArithmeticOperator
-
- All Implemented Interfaces:
Serializable
,Comparable<UnaryArithmeticOperator>
public enum UnaryArithmeticOperator extends Enum<UnaryArithmeticOperator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description UNARY_MINUS
UNARY_PLUS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description char
getOperatorChar()
static UnaryArithmeticOperator
valueOf(String name)
Returns the enum constant of this type with the specified name.static UnaryArithmeticOperator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNARY_PLUS
public static final UnaryArithmeticOperator UNARY_PLUS
-
UNARY_MINUS
public static final UnaryArithmeticOperator UNARY_MINUS
-
-
Method Detail
-
values
public static UnaryArithmeticOperator[] 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 (UnaryArithmeticOperator c : UnaryArithmeticOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UnaryArithmeticOperator 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
-
getOperatorChar
public char getOperatorChar()
-
-