com.dxfeed.api.spi
Enum DXFeedDataFieldAggregator.FieldTimeness

java.lang.Object
  extended by java.lang.Enum<DXFeedDataFieldAggregator.FieldTimeness>
      extended by com.dxfeed.api.spi.DXFeedDataFieldAggregator.FieldTimeness
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DXFeedDataFieldAggregator.FieldTimeness>
Enclosing interface:
DXFeedDataFieldAggregator

public static enum DXFeedDataFieldAggregator.FieldTimeness
extends java.lang.Enum<DXFeedDataFieldAggregator.FieldTimeness>


Enum Constant Summary
COMMON_FIELD
           
FIRST_TIME_INT_FIELD
           
SECOND_TIME_INT_FIELD
           
 
Method Summary
static DXFeedDataFieldAggregator.FieldTimeness valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DXFeedDataFieldAggregator.FieldTimeness[] 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

COMMON_FIELD

public static final DXFeedDataFieldAggregator.FieldTimeness COMMON_FIELD

FIRST_TIME_INT_FIELD

public static final DXFeedDataFieldAggregator.FieldTimeness FIRST_TIME_INT_FIELD

SECOND_TIME_INT_FIELD

public static final DXFeedDataFieldAggregator.FieldTimeness SECOND_TIME_INT_FIELD
Method Detail

values

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

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

valueOf

public static DXFeedDataFieldAggregator.FieldTimeness 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