@Restricted(value=org.kohsuke.accmod.restrictions.NoExternalUse.class) public enum CalendarEventState extends Enum<CalendarEventState>
| Modifier and Type | Method and Description |
|---|---|
static CalendarEventState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CalendarEventState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarEventState FINISHED
public static final CalendarEventState RUNNING
public static final CalendarEventState SCHEDULED
public static CalendarEventState[] values()
for (CalendarEventState c : CalendarEventState.values()) System.out.println(c);
public static CalendarEventState 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 nullCopyright © 2016–2022. All rights reserved.