ReportMill 11 API

com.reportmill.datasource
Enum RMCondition.Operator

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

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


Enum Constant Summary
After
           
And
           
Before
           
Contains
           
Empty
           
EndsWith
           
Equals
           
GreaterThan
           
LessThan
           
Like
           
Or
           
StartsWith
           
WithinLast
           
WithinNext
           
 
Method Summary
static RMCondition.Operator valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RMCondition.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

Equals

public static final RMCondition.Operator Equals

GreaterThan

public static final RMCondition.Operator GreaterThan

LessThan

public static final RMCondition.Operator LessThan

StartsWith

public static final RMCondition.Operator StartsWith

EndsWith

public static final RMCondition.Operator EndsWith

Contains

public static final RMCondition.Operator Contains

Before

public static final RMCondition.Operator Before

After

public static final RMCondition.Operator After

WithinNext

public static final RMCondition.Operator WithinNext

WithinLast

public static final RMCondition.Operator WithinLast

Empty

public static final RMCondition.Operator Empty

And

public static final RMCondition.Operator And

Or

public static final RMCondition.Operator Or

Like

public static final RMCondition.Operator Like
Method Detail

values

public static RMCondition.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 (RMCondition.Operator c : RMCondition.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 RMCondition.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