net.esper.eql.spec
Enum OutputLimitRateType

java.lang.Object
  extended by java.lang.Enum<OutputLimitRateType>
      extended by net.esper.eql.spec.OutputLimitRateType
All Implemented Interfaces:
Serializable, Comparable<OutputLimitRateType>

public enum OutputLimitRateType
extends Enum<OutputLimitRateType>

Enum for the type of rate for output-rate limiting.


Enum Constant Summary
EVENTS
          Output by events.
TIME_MIN
          Output by minutes.
TIME_SEC
          Output by seconds.
 
Method Summary
static OutputLimitRateType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static OutputLimitRateType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EVENTS

public static final OutputLimitRateType EVENTS
Output by events.


TIME_SEC

public static final OutputLimitRateType TIME_SEC
Output by seconds.


TIME_MIN

public static final OutputLimitRateType TIME_MIN
Output by minutes.

Method Detail

values

public static final OutputLimitRateType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(OutputLimitRateType c : OutputLimitRateType.values())
        System.out.println(c);

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

valueOf

public static OutputLimitRateType 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

© 2007 EsperTech Inc.
All rights reserved.
Visit us at espertech.com