public enum QosType extends Enum<QosType>
Enum Constant and Description |
---|
CPU |
HOSTNETWORK |
NETWORK |
STORAGE |
Modifier and Type | Method and Description |
---|---|
static QosType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QosType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QosType STORAGE
public static final QosType CPU
public static final QosType NETWORK
public static final QosType HOSTNETWORK
public static QosType[] values()
for (QosType c : QosType.values()) System.out.println(c);
public static QosType 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 © 2016. All rights reserved.