public enum PerformanceLevelUnit extends Enum<PerformanceLevelUnit>
Enum Constant and Description |
---|
DTU
Enum value DTU.
|
Modifier and Type | Method and Description |
---|---|
static PerformanceLevelUnit |
fromString(String value)
Parses a serialized value to a PerformanceLevelUnit instance.
|
String |
toString() |
static PerformanceLevelUnit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PerformanceLevelUnit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PerformanceLevelUnit DTU
public static PerformanceLevelUnit[] values()
for (PerformanceLevelUnit c : PerformanceLevelUnit.values()) System.out.println(c);
public static PerformanceLevelUnit 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 nullpublic static PerformanceLevelUnit fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<PerformanceLevelUnit>
Copyright © 2019. All rights reserved.