public enum BandwidthGroupType extends java.lang.Enum<BandwidthGroupType>
{1D92B67D-DC69-4BE9-AD4C-93A01E1E0C8E}
Enum Constant and Description |
---|
Disk
The bandwidth group controls disk I/O.
|
Network
The bandwidth group controls network I/O.
|
Null
Null type, must be first.
|
Modifier and Type | Method and Description |
---|---|
static BandwidthGroupType |
fromValue(long v) |
static BandwidthGroupType |
fromValue(java.lang.String v) |
int |
value() |
static BandwidthGroupType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BandwidthGroupType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BandwidthGroupType Null
public static final BandwidthGroupType Disk
public static final BandwidthGroupType Network
public static BandwidthGroupType[] values()
for (BandwidthGroupType c : BandwidthGroupType.values()) System.out.println(c);
public static BandwidthGroupType 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 nullpublic int value()
public static BandwidthGroupType fromValue(long v)
public static BandwidthGroupType fromValue(java.lang.String v)