org.apache.camel.language.simple.types
Enum UnaryOperatorType

java.lang.Object
  extended by java.lang.Enum<UnaryOperatorType>
      extended by 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.


Enum Constant Summary
DEC
           
INC
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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 name
NullPointerException - 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 class Enum<UnaryOperatorType>


Apache Camel