public static enum Types.VbdMode extends Enum<Types.VbdMode>
Enum Constant and Description |
---|
RO
only read-only access will be allowed
|
RW
read-write access will be allowed
|
UNRECOGNIZED
The value does not belong to this enumeration
|
Modifier and Type | Method and Description |
---|---|
static Types.VbdMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Types.VbdMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.VbdMode UNRECOGNIZED
public static final Types.VbdMode RO
public static final Types.VbdMode RW
public static Types.VbdMode[] values()
for (Types.VbdMode c : Types.VbdMode.values()) System.out.println(c);
public static Types.VbdMode 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