public static enum Device.Type extends Enum<Device.Type>
Enum Constant and Description |
---|
BALANCER |
CONTROLLER |
FIBER_SWITCH |
FIREWALL |
IDS |
IPS |
MICROWAVE |
OLS |
OLT |
ONU |
OPTICAL_AMPLIFIER |
OTHER |
OTN |
ROADM |
ROADM_OTN |
ROUTER |
SERVER |
SWITCH |
TERMINAL_DEVICE |
VIRTUAL |
Modifier and Type | Method and Description |
---|---|
static Device.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Device.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Device.Type SWITCH
public static final Device.Type ROUTER
public static final Device.Type ROADM
public static final Device.Type OTN
public static final Device.Type ROADM_OTN
public static final Device.Type FIREWALL
public static final Device.Type BALANCER
public static final Device.Type IPS
public static final Device.Type IDS
public static final Device.Type CONTROLLER
public static final Device.Type VIRTUAL
public static final Device.Type FIBER_SWITCH
public static final Device.Type MICROWAVE
public static final Device.Type OLT
public static final Device.Type ONU
public static final Device.Type OPTICAL_AMPLIFIER
public static final Device.Type OLS
public static final Device.Type TERMINAL_DEVICE
public static final Device.Type OTHER
public static final Device.Type SERVER
public static Device.Type[] values()
for (Device.Type c : Device.Type.values()) System.out.println(c);
public static Device.Type 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 null