public enum RegistryValueType extends java.lang.Enum<RegistryValueType>
| Enum Constant and Description |
|---|
BINARY
binary
|
DWORD
dword
|
DWORD_BIG_ENDIAN
dword Big Endian
|
DWORD_LITTLE_ENDIAN
dword Little Endian
|
EXPAND_SZ
expand Sz
|
LINK
link
|
MULTI_SZ
multi Sz
|
NONE
none
|
QWORD
qword
|
QWORDLITTLE_ENDIAN
qwordlittle Endian
|
SZ
sz
|
UNEXPECTED_VALUE
For RegistryValueType values that were not expected from the service
|
UNKNOWN
unknown
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static RegistryValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RegistryValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegistryValueType UNKNOWN
public static final RegistryValueType BINARY
public static final RegistryValueType DWORD
public static final RegistryValueType DWORD_LITTLE_ENDIAN
public static final RegistryValueType DWORD_BIG_ENDIAN
public static final RegistryValueType EXPAND_SZ
public static final RegistryValueType LINK
public static final RegistryValueType MULTI_SZ
public static final RegistryValueType NONE
public static final RegistryValueType QWORD
public static final RegistryValueType QWORDLITTLE_ENDIAN
public static final RegistryValueType SZ
public static final RegistryValueType UNKNOWN_FUTURE_VALUE
public static final RegistryValueType UNEXPECTED_VALUE
public static RegistryValueType[] values()
for (RegistryValueType c : RegistryValueType.values()) System.out.println(c);
public static RegistryValueType 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