public enum RegistryHive extends java.lang.Enum<RegistryHive>
Enum Constant and Description |
---|
CURRENT_CONFIG
current Config
|
CURRENT_USER
current User
|
LOCAL_MACHINE_SAM
local Machine Sam
|
LOCAL_MACHINE_SECURITY
local Machine Security
|
LOCAL_MACHINE_SOFTWARE
local Machine Software
|
LOCAL_MACHINE_SYSTEM
local Machine System
|
UNEXPECTED_VALUE
For RegistryHive values that were not expected from the service
|
UNKNOWN
unknown
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
USERS_DEFAULT
users Default
|
Modifier and Type | Method and Description |
---|---|
static RegistryHive |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RegistryHive[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegistryHive UNKNOWN
public static final RegistryHive CURRENT_CONFIG
public static final RegistryHive CURRENT_USER
public static final RegistryHive LOCAL_MACHINE_SAM
public static final RegistryHive LOCAL_MACHINE_SECURITY
public static final RegistryHive LOCAL_MACHINE_SOFTWARE
public static final RegistryHive LOCAL_MACHINE_SYSTEM
public static final RegistryHive USERS_DEFAULT
public static final RegistryHive UNKNOWN_FUTURE_VALUE
public static final RegistryHive UNEXPECTED_VALUE
public static RegistryHive[] values()
for (RegistryHive c : RegistryHive.values()) System.out.println(c);
public static RegistryHive valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null