public enum WeekdayRecurType extends Enum<WeekdayRecurType>
Java class for WeekdayRecurType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="WeekdayRecurType">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="SU"/>
<enumeration value="MO"/>
<enumeration value="TU"/>
<enumeration value="WE"/>
<enumeration value="TH"/>
<enumeration value="FR"/>
<enumeration value="SA"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static WeekdayRecurType |
fromValue(String v) |
String |
value() |
static WeekdayRecurType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WeekdayRecurType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WeekdayRecurType SU
public static final WeekdayRecurType MO
public static final WeekdayRecurType TU
public static final WeekdayRecurType WE
public static final WeekdayRecurType TH
public static final WeekdayRecurType FR
public static final WeekdayRecurType SA
public static WeekdayRecurType[] values()
for (WeekdayRecurType c : WeekdayRecurType.values()) System.out.println(c);
public static WeekdayRecurType 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 WeekdayRecurType fromValue(String v)
Copyright © 2017 Bedework. All rights reserved.