public static enum DetailHelper.Detail extends Enum<DetailHelper.Detail>
Enum Constant and Description |
---|
DISKS |
NICS |
STATISTICS |
TAGS |
Modifier and Type | Method and Description |
---|---|
static DetailHelper.Detail |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DetailHelper.Detail[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DetailHelper.Detail DISKS
public static final DetailHelper.Detail NICS
public static final DetailHelper.Detail STATISTICS
public static final DetailHelper.Detail TAGS
public static DetailHelper.Detail[] values()
for (DetailHelper.Detail c : DetailHelper.Detail.values()) System.out.println(c);
public static DetailHelper.Detail 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 © 2012. All Rights Reserved.