ReportMill 11 API

com.reportmill.base
Enum RMKeyChain.Operator

java.lang.Object
  extended by java.lang.Enum<RMKeyChain.Operator>
      extended by com.reportmill.base.RMKeyChain.Operator
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RMKeyChain.Operator>
Enclosing class:
RMKeyChain

public static enum RMKeyChain.Operator
extends java.lang.Enum<RMKeyChain.Operator>


Enum Constant Summary
Add
           
And
           
ArgList
           
ArrayIndex
           
Assignment
           
Conditional
           
Divide
           
Equal
           
FunctionCall
           
GreaterThan
           
GreaterThanOrEqual
           
Key
           
LessThan
           
LessThanOrEqual
           
Mod
           
Multiply
           
Negate
           
Not
           
NotEqual
           
Null
           
Or
           
String
           
Subtract
           
Value
           
 
Method Summary
static RMKeyChain.Operator valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RMKeyChain.Operator[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Add

public static final RMKeyChain.Operator Add

Subtract

public static final RMKeyChain.Operator Subtract

Multiply

public static final RMKeyChain.Operator Multiply

Divide

public static final RMKeyChain.Operator Divide

Mod

public static final RMKeyChain.Operator Mod

Negate

public static final RMKeyChain.Operator Negate

Key

public static final RMKeyChain.Operator Key

Value

public static final RMKeyChain.Operator Value

String

public static final RMKeyChain.Operator String

ArgList

public static final RMKeyChain.Operator ArgList

FunctionCall

public static final RMKeyChain.Operator FunctionCall

ArrayIndex

public static final RMKeyChain.Operator ArrayIndex

Null

public static final RMKeyChain.Operator Null

Equal

public static final RMKeyChain.Operator Equal

NotEqual

public static final RMKeyChain.Operator NotEqual

GreaterThan

public static final RMKeyChain.Operator GreaterThan

LessThan

public static final RMKeyChain.Operator LessThan

GreaterThanOrEqual

public static final RMKeyChain.Operator GreaterThanOrEqual

LessThanOrEqual

public static final RMKeyChain.Operator LessThanOrEqual

Not

public static final RMKeyChain.Operator Not

And

public static final RMKeyChain.Operator And

Or

public static final RMKeyChain.Operator Or

Conditional

public static final RMKeyChain.Operator Conditional

Assignment

public static final RMKeyChain.Operator Assignment
Method Detail

values

public static RMKeyChain.Operator[] 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 (RMKeyChain.Operator c : RMKeyChain.Operator.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RMKeyChain.Operator valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

ReportMill 11 API