public enum InstanceType extends java.lang.Enum<InstanceType>
| Enum Constant and Description |
|---|
EXCEPTION
Specifies that the item is an exception to a recurring appointment.
|
NONE
None.
|
OCCURRENCE
Specifies that the item is an occurrence of a recurring appointment.
|
RECURRING_MASTER
Specifies that the item is the master that contains the recurrence pattern for a appointment.
|
SINGLE
Specifies that the item is not associated with a recurring appointment.
|
| Modifier and Type | Method and Description |
|---|---|
static InstanceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InstanceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstanceType SINGLE
public static final InstanceType OCCURRENCE
public static final InstanceType EXCEPTION
public static final InstanceType RECURRING_MASTER
public static final InstanceType NONE
public static InstanceType[] values()
for (InstanceType c : InstanceType.values()) System.out.println(c);
public static InstanceType 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