public static enum Wave.Status extends Enum<Wave.Status>
Enum Constant and Description |
---|
Cancelled
The wave has just been cancelled.
|
Consumed
The wave is being consumed.
|
Created
The wave has just been created, it's the default status.
|
Destroyed
The wave has just been destroyed.
|
Failed
The wave processing has failed.
|
Handled
The wave has been performed by all handlers.
|
Processing
The wave is being processing.
|
Sent
The wave has just been sent.
|
Modifier and Type | Method and Description |
---|---|
static Wave.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Wave.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Wave.Status Created
public static final Wave.Status Sent
public static final Wave.Status Processing
public static final Wave.Status Cancelled
public static final Wave.Status Consumed
public static final Wave.Status Handled
public static final Wave.Status Failed
public static final Wave.Status Destroyed
public static Wave.Status[] values()
for (Wave.Status c : Wave.Status.values()) System.out.println(c);
public static Wave.Status 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 © 2011–2016 JRebirth OSS. All rights reserved.