public enum WaveGroup extends Enum<WaveGroup>
| Enum Constant and Description |
|---|
ATTACH_UI
Used to attach an UI into a nodeProperty.
|
CALL_COMMAND
Used to call a command.
|
RETURN_DATA
Used to return Data from Service.
|
UNDEFINED
Used by Other Waves.
|
| Modifier and Type | Method and Description |
|---|---|
static WaveGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WaveGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WaveGroup CALL_COMMAND
public static final WaveGroup ATTACH_UI
public static final WaveGroup RETURN_DATA
public static final WaveGroup UNDEFINED
public static WaveGroup[] values()
for (WaveGroup c : WaveGroup.values()) System.out.println(c);
public static WaveGroup 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–2015 JRebirth OSS. All rights reserved.