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