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