com.espertech.esper.type
Enum CronParameter.CronOperator

java.lang.Object
  extended by java.lang.Enum<CronParameter.CronOperator>
      extended by com.espertech.esper.type.CronParameter.CronOperator
All Implemented Interfaces:
Serializable, Comparable<CronParameter.CronOperator>
Enclosing class:
CronParameter

public static enum CronParameter.CronOperator
extends Enum<CronParameter.CronOperator>

Enumeration for special keywords in crontab timer.


Enum Constant Summary
last
          Last day of week or month.
lw
          Last weekday in a month
w
          Weekday (nearest to a date)
 
Method Summary
static CronParameter.CronOperator valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CronParameter.CronOperator[] 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

last

public static final CronParameter.CronOperator last
Last day of week or month.


w

public static final CronParameter.CronOperator w
Weekday (nearest to a date)


lw

public static final CronParameter.CronOperator lw
Last weekday in a month

Method Detail

values

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

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

valueOf

public static CronParameter.CronOperator 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