public static enum PortConnector.PortStatsType extends java.lang.Enum<PortConnector.PortStatsType>
Enum Constant and Description |
---|
BLACKLIST
Get all traffic not sent through this port because of
blacklisting.
|
DIGIPEAT
Get all traffic digipeated through this station.
|
LOCAL_ORIGIN
Get all traffic originated from this station.
|
OTHER
Get counts of other types of traffic sent through this port.
|
RX_IGATE
Get all traffic I-gated from RF to Internet through this port.
|
TOTAL
Get the total traffic sent through this port.
|
TX_IGATE
Get all traffic I-gated from Internet to RF through this port.
|
Modifier and Type | Method and Description |
---|---|
static PortConnector.PortStatsType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PortConnector.PortStatsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PortConnector.PortStatsType TOTAL
public static final PortConnector.PortStatsType LOCAL_ORIGIN
public static final PortConnector.PortStatsType DIGIPEAT
public static final PortConnector.PortStatsType RX_IGATE
public static final PortConnector.PortStatsType TX_IGATE
public static final PortConnector.PortStatsType BLACKLIST
public static final PortConnector.PortStatsType OTHER
public static PortConnector.PortStatsType[] values()
for (PortConnector.PortStatsType c : PortConnector.PortStatsType.values()) System.out.println(c);
public static PortConnector.PortStatsType 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