public enum FreqRecurType extends Enum<FreqRecurType>
Java class for FreqRecurType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="FreqRecurType">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="SECONDLY"/>
<enumeration value="MINUTELY"/>
<enumeration value="HOURLY"/>
<enumeration value="DAILY"/>
<enumeration value="WEEKLY"/>
<enumeration value="MONTHLY"/>
<enumeration value="YEARLY"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DAILY |
HOURLY |
MINUTELY |
MONTHLY |
SECONDLY |
WEEKLY |
YEARLY |
| Modifier and Type | Method and Description |
|---|---|
static FreqRecurType |
fromValue(String v) |
String |
value() |
static FreqRecurType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FreqRecurType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FreqRecurType SECONDLY
public static final FreqRecurType MINUTELY
public static final FreqRecurType HOURLY
public static final FreqRecurType DAILY
public static final FreqRecurType WEEKLY
public static final FreqRecurType MONTHLY
public static final FreqRecurType YEARLY
public static FreqRecurType[] values()
for (FreqRecurType c : FreqRecurType.values()) System.out.println(c);
public static FreqRecurType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static FreqRecurType fromValue(String v)
Copyright © 2015 Bedework. All rights reserved.