public enum ListeningBehaviour extends Enum<ListeningBehaviour>
Enum Constant and Description |
---|
DETACHED |
EXECUTION_RESULT |
EXECUTION_RESULT_AND_STATE_CHANGES |
Modifier and Type | Method and Description |
---|---|
static ListeningBehaviour |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListeningBehaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListeningBehaviour DETACHED
public static final ListeningBehaviour EXECUTION_RESULT
public static final ListeningBehaviour EXECUTION_RESULT_AND_STATE_CHANGES
public static ListeningBehaviour[] values()
for (ListeningBehaviour c : ListeningBehaviour.values()) System.out.println(c);
public static ListeningBehaviour 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 © 2014–2017 The Apache Software Foundation. All rights reserved.