public static enum NetworkElement.Type extends Enum<NetworkElement.Type>
Enum Constant and Description |
---|
ACCESS_POINT |
FIREWALL |
IDS |
NIC |
OTHER |
ROUTER |
SWITCH |
Modifier and Type | Method and Description |
---|---|
static NetworkElement.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NetworkElement.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NetworkElement.Type SWITCH
public static final NetworkElement.Type ROUTER
public static final NetworkElement.Type ACCESS_POINT
public static final NetworkElement.Type NIC
public static final NetworkElement.Type FIREWALL
public static final NetworkElement.Type IDS
public static final NetworkElement.Type OTHER
public static NetworkElement.Type[] values()
for (NetworkElement.Type c : NetworkElement.Type.values()) System.out.println(c);
public static NetworkElement.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 nullCopyright © 2015. All Rights Reserved.