public static enum Currency.Event extends java.lang.Enum<Currency.Event>
| Enum Constant and Description | 
|---|
| BEFORE_DELETE | 
| BEFORE_DISTRIBUTE_CROWDFUNDING | 
| BEFORE_UNDO_CROWDFUNDING | 
| Modifier and Type | Method and Description | 
|---|---|
| static Currency.Event | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Currency.Event[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Currency.Event BEFORE_DISTRIBUTE_CROWDFUNDING
public static final Currency.Event BEFORE_UNDO_CROWDFUNDING
public static final Currency.Event BEFORE_DELETE
public static Currency.Event[] values()
for (Currency.Event c : Currency.Event.values()) System.out.println(c);
public static Currency.Event 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