public static enum CalendarLink.Rel extends java.lang.Enum<CalendarLink.Rel>
Enum Constant and Description |
---|
FREE_BUSY
Free-busy calendar link.
|
HOME
Home calendar link.
|
WORK
Work calendar link.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toValue()
Returns the value used in the XML.
|
static CalendarLink.Rel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CalendarLink.Rel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarLink.Rel FREE_BUSY
public static final CalendarLink.Rel HOME
public static final CalendarLink.Rel WORK
public static CalendarLink.Rel[] values()
for (CalendarLink.Rel c : CalendarLink.Rel.values()) System.out.println(c);
public static CalendarLink.Rel 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 nullpublic java.lang.String toValue()