public enum OrganizationEvent extends java.lang.Enum<OrganizationEvent> implements EnumConverter<OrganizationEvent>
| Enum Constant and Description |
|---|
GROUP_CREATED |
GROUP_DELETED |
PROJECT_CREATED |
PROJECT_DELETED |
| Modifier and Type | Method and Description |
|---|---|
static OrganizationEvent |
from(java.lang.String value) |
java.lang.Object |
to(OrganizationEvent v) |
static OrganizationEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OrganizationEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrganizationEvent GROUP_CREATED
public static final OrganizationEvent GROUP_DELETED
public static final OrganizationEvent PROJECT_CREATED
public static final OrganizationEvent PROJECT_DELETED
public static OrganizationEvent[] values()
for (OrganizationEvent c : OrganizationEvent.values()) System.out.println(c);
public static OrganizationEvent 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 static OrganizationEvent from(java.lang.String value)
public java.lang.Object to(OrganizationEvent v)
to in interface EnumConverter<OrganizationEvent>