public static enum Connector.ConnectorType extends java.lang.Enum<Connector.ConnectorType>
| Enum Constant and Description |
|---|
BOGUS_RT
This is a source of bogus data, and should be displayed (but filtered as realtime),
but not logged or digipeated/I-gated.
|
PLAYBACK
This is a source for historical (playback) traffic, and should be displayed,
but not logged or digipeated/I-gated.
|
REALTIME
This is a source for real realtime traffic and should be displayed, logged,
and digipeated/I-gated as appropriate.
|
| Modifier and Type | Method and Description |
|---|---|
static Connector.ConnectorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Connector.ConnectorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Connector.ConnectorType REALTIME
public static final Connector.ConnectorType PLAYBACK
public static final Connector.ConnectorType BOGUS_RT
public static Connector.ConnectorType[] values()
for (Connector.ConnectorType c : Connector.ConnectorType.values()) System.out.println(c);
public static Connector.ConnectorType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null