Enum UnaryOperatorType
- java.lang.Object
-
- java.lang.Enum<UnaryOperatorType>
-
- org.apache.camel.language.simple.types.UnaryOperatorType
-
- All Implemented Interfaces:
Serializable
,Comparable<UnaryOperatorType>
public enum UnaryOperatorType extends Enum<UnaryOperatorType>
Types of unary operators supported. An unary operator can only work on the left hand side, which means the operator should be defined directly after the function it should work upon.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UnaryOperatorType
asOperator(String text)
String
getOperatorText(UnaryOperatorType operator)
String
toString()
static UnaryOperatorType
valueOf(String name)
Returns the enum constant of this type with the specified name.static UnaryOperatorType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INC
public static final UnaryOperatorType INC
-
DEC
public static final UnaryOperatorType DEC
-
-
Method Detail
-
values
public static UnaryOperatorType[] 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 (UnaryOperatorType c : UnaryOperatorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UnaryOperatorType 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
-
asOperator
public static UnaryOperatorType asOperator(String text)
-
getOperatorText
public String getOperatorText(UnaryOperatorType operator)
-
toString
public String toString()
- Overrides:
toString
in classEnum<UnaryOperatorType>
-
-