public static enum ZendriveDriverAttributes.ServiceLevel extends java.lang.Enum<ZendriveDriverAttributes.ServiceLevel>
Enum Constant and Description |
---|
LEVEL_1
Special service level 1 that is enabled for a particular application.
|
LEVEL_DEFAULT
Default service level.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
Returns a string containing a concise, human-readable description of this
object.
|
static ZendriveDriverAttributes.ServiceLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ZendriveDriverAttributes.ServiceLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZendriveDriverAttributes.ServiceLevel LEVEL_DEFAULT
public static final ZendriveDriverAttributes.ServiceLevel LEVEL_1
public static ZendriveDriverAttributes.ServiceLevel[] values()
for (ZendriveDriverAttributes.ServiceLevel c : ZendriveDriverAttributes.ServiceLevel.values()) System.out.println(c);
public static ZendriveDriverAttributes.ServiceLevel 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 java.lang.String toString()
java.lang.Enum
toString
in class java.lang.Enum<ZendriveDriverAttributes.ServiceLevel>