public enum OutputListenerMode extends Enum<OutputListenerMode> implements CmdLineOptionsProvider
OutputListener
modes for the command line toolEnum Constant and Description |
---|
TRENDS
Detect trends and output them as JSON every now and again
|
ZMQ
an
OutputListener which starts a Zmq publisher |
Modifier and Type | Method and Description |
---|---|
abstract OutputListener |
getOptions() |
static OutputListenerMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputListenerMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputListenerMode ZMQ
OutputListener
which starts a Zmq publisherpublic static final OutputListenerMode TRENDS
public static OutputListenerMode[] values()
for (OutputListenerMode c : OutputListenerMode.values()) System.out.println(c);
public static OutputListenerMode 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 nullpublic abstract OutputListener getOptions()
getOptions
in interface CmdLineOptionsProvider