public enum PerformanceManagerUnit extends Enum<PerformanceManagerUnit>
| Enum Constant and Description |
|---|
joule |
kiloBytes |
kiloBytesPerSecond |
megaBytes |
megaBytesPerSecond |
megaHertz |
microsecond |
millisecond |
number |
percent |
second |
watt |
| Modifier and Type | Method and Description |
|---|---|
static PerformanceManagerUnit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PerformanceManagerUnit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PerformanceManagerUnit percent
public static final PerformanceManagerUnit kiloBytes
public static final PerformanceManagerUnit megaBytes
public static final PerformanceManagerUnit megaHertz
public static final PerformanceManagerUnit number
public static final PerformanceManagerUnit microsecond
public static final PerformanceManagerUnit millisecond
public static final PerformanceManagerUnit second
public static final PerformanceManagerUnit kiloBytesPerSecond
public static final PerformanceManagerUnit megaBytesPerSecond
public static final PerformanceManagerUnit watt
public static final PerformanceManagerUnit joule
public static PerformanceManagerUnit[] values()
for (PerformanceManagerUnit c : PerformanceManagerUnit.values()) System.out.println(c);
public static PerformanceManagerUnit 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 © 2011-2012. All Rights Reserved.