public static enum WindowsRegistry.REGISTRY_ROOT_KEY extends Enum<WindowsRegistry.REGISTRY_ROOT_KEY>
Enum Constant and Description |
---|
CLASSES_ROOT |
CURRENT_USER |
LOCAL_MACHINE |
USERS |
Modifier and Type | Method and Description |
---|---|
static WindowsRegistry.REGISTRY_ROOT_KEY |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WindowsRegistry.REGISTRY_ROOT_KEY[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowsRegistry.REGISTRY_ROOT_KEY CLASSES_ROOT
public static final WindowsRegistry.REGISTRY_ROOT_KEY CURRENT_USER
public static final WindowsRegistry.REGISTRY_ROOT_KEY LOCAL_MACHINE
public static final WindowsRegistry.REGISTRY_ROOT_KEY USERS
public static WindowsRegistry.REGISTRY_ROOT_KEY[] values()
for (WindowsRegistry.REGISTRY_ROOT_KEY c : WindowsRegistry.REGISTRY_ROOT_KEY.values()) System.out.println(c);
public static WindowsRegistry.REGISTRY_ROOT_KEY 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 null