public enum DHXLightboxRecurring extends java.lang.Enum<DHXLightboxRecurring>
Enum Constant and Description |
---|
ASK
Before the lightbox is opened a message box alerts and asks the user whether he will edit a certain instance or the entire recurring event
|
INSTANCE
The lightbox opens straight for editing a certain instance of the event.
|
SERIES
The lightbox opens straight for editing the entire recurring event.
|
Modifier and Type | Method and Description |
---|---|
static DHXLightboxRecurring |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DHXLightboxRecurring[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DHXLightboxRecurring ASK
public static final DHXLightboxRecurring INSTANCE
public static final DHXLightboxRecurring SERIES
public static DHXLightboxRecurring[] values()
for (DHXLightboxRecurring c : DHXLightboxRecurring.values()) System.out.println(c);
public static DHXLightboxRecurring 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