public static enum Types.NetworkOperations extends java.lang.Enum<Types.NetworkOperations>
Enum Constant and Description |
---|
ATTACHING
Indicates this network is attaching to a VIF or PIF
|
UNRECOGNIZED
The value does not belong to this enumeration
|
Modifier and Type | Method and Description |
---|---|
static Types.NetworkOperations |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Types.NetworkOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.NetworkOperations UNRECOGNIZED
public static final Types.NetworkOperations ATTACHING
public static Types.NetworkOperations[] values()
for (Types.NetworkOperations c : Types.NetworkOperations.values()) System.out.println(c);
public static Types.NetworkOperations 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