public static enum RegistryEntry.Root extends Enum<RegistryEntry.Root>
| Enum Constant and Description |
|---|
HKEY_CURRENT_USER |
HKEY_LOCAL_MACHINE |
| Modifier and Type | Method and Description |
|---|---|
static RegistryEntry.Root |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegistryEntry.Root[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegistryEntry.Root HKEY_LOCAL_MACHINE
public static final RegistryEntry.Root HKEY_CURRENT_USER
public static RegistryEntry.Root[] values()
for (RegistryEntry.Root c : RegistryEntry.Root.values()) System.out.println(c);
public static RegistryEntry.Root 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 © 2008-2014 Red Hat, Inc.. All Rights Reserved.