public static enum CalendarResource.ComponentType extends Enum<CalendarResource.ComponentType>
| Enum Constant and Description |
|---|
VEVENT |
VFREEBUSY |
VJOURNAL |
VTIMEZONE |
VTODO |
| Modifier and Type | Method and Description |
|---|---|
static CalendarResource.ComponentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CalendarResource.ComponentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarResource.ComponentType VEVENT
public static final CalendarResource.ComponentType VTODO
public static final CalendarResource.ComponentType VTIMEZONE
public static final CalendarResource.ComponentType VFREEBUSY
public static final CalendarResource.ComponentType VJOURNAL
public static CalendarResource.ComponentType[] values()
for (CalendarResource.ComponentType c : CalendarResource.ComponentType.values()) System.out.println(c);
public static CalendarResource.ComponentType 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 null