public static enum AgentListener.ListenerResponse extends Enum<AgentListener.ListenerResponse>
Enum Constant and Description |
---|
CONTINUE
Tell the learning process to continue calling the listeners and the training.
|
STOP
Tell the learning process to stop calling the listeners and terminate the training.
|
Modifier and Type | Method and Description |
---|---|
static AgentListener.ListenerResponse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AgentListener.ListenerResponse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgentListener.ListenerResponse CONTINUE
public static final AgentListener.ListenerResponse STOP
public static AgentListener.ListenerResponse[] values()
for (AgentListener.ListenerResponse c : AgentListener.ListenerResponse.values()) System.out.println(c);
public static AgentListener.ListenerResponse 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.