com.partnersoft.io
Enum DataFilterField.FieldType

java.lang.Object
  extended by java.lang.Enum<DataFilterField.FieldType>
      extended by com.partnersoft.io.DataFilterField.FieldType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DataFilterField.FieldType>
Enclosing class:
DataFilterField

public static enum DataFilterField.FieldType
extends java.lang.Enum<DataFilterField.FieldType>


Enum Constant Summary
CONSTANT
          This DataRecordFilterField refers to a constant value.
FIELD
          This DataRecordFilterField refers to an actual field in the DataRecordSource.
 
Method Summary
static DataFilterField.FieldType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DataFilterField.FieldType[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FIELD

public static final DataFilterField.FieldType FIELD
This DataRecordFilterField refers to an actual field in the DataRecordSource.


CONSTANT

public static final DataFilterField.FieldType CONSTANT
This DataRecordFilterField refers to a constant value.

Method Detail

values

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

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

valueOf

public static DataFilterField.FieldType 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