public enum RegistryView extends java.lang.Enum<RegistryView>
Enum Constant and Description |
---|
BIT32
Always use the 32-bit view stored in the special Wow6432Node key.
|
BIT64
Always use the 64-bit view.
|
DEFAULT
Use the 32-bit view for a 32-bit, and the 64-bit view for a 64-bit process.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static RegistryView |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RegistryView[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegistryView DEFAULT
public static final RegistryView BIT32
public static final RegistryView BIT64
public static RegistryView[] values()
for (RegistryView c : RegistryView.values()) System.out.println(c);
public static RegistryView 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<RegistryView>