public enum ActorStateChangeKind extends Enum<ActorStateChangeKind>
Enum Constant and Description |
---|
ADD
State needs to be added.
|
NONE
No change in state.
|
REMOVE
State needs to be removed.
|
UPDATE
State needs to be updated.
|
Modifier and Type | Method and Description |
---|---|
static ActorStateChangeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActorStateChangeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActorStateChangeKind NONE
public static final ActorStateChangeKind ADD
public static final ActorStateChangeKind UPDATE
public static final ActorStateChangeKind REMOVE
public static ActorStateChangeKind[] values()
for (ActorStateChangeKind c : ActorStateChangeKind.values()) System.out.println(c);
public static ActorStateChangeKind 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 © 2020. All rights reserved.