public enum PeriodicityType extends java.lang.Enum<PeriodicityType>
| Enum Constant and Description |
|---|
ERRONEOUS |
HALF_DAY |
TOP_OF_DAY |
TOP_OF_HOUR |
TOP_OF_MILLISECOND |
TOP_OF_MINUTE |
TOP_OF_MONTH |
TOP_OF_SECOND |
TOP_OF_WEEK |
| Modifier and Type | Method and Description |
|---|---|
static PeriodicityType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PeriodicityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PeriodicityType ERRONEOUS
public static final PeriodicityType TOP_OF_MILLISECOND
public static final PeriodicityType TOP_OF_SECOND
public static final PeriodicityType TOP_OF_MINUTE
public static final PeriodicityType TOP_OF_HOUR
public static final PeriodicityType HALF_DAY
public static final PeriodicityType TOP_OF_DAY
public static final PeriodicityType TOP_OF_WEEK
public static final PeriodicityType TOP_OF_MONTH
public static PeriodicityType[] values()
for (PeriodicityType c : PeriodicityType.values()) System.out.println(c);
public static PeriodicityType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null