Serializable
, Comparable<Registry.Type>
public static enum Registry.Type extends Enum<Registry.Type>
Enum Constant | Description |
---|---|
REG_BINARY |
|
REG_DWORD |
|
REG_DWORD_BIG_ENDIAN |
|
REG_EXPAND_SZ |
|
REG_FULL_RESOURCE_DESCRIPTOR |
|
REG_LINK |
|
REG_MULTI_SZ |
|
REG_NONE |
|
REG_QWORD |
|
REG_RESOURCE_LIST |
|
REG_RESOURCE_REQUIREMENTS_LIST |
|
REG_SZ |
Modifier and Type | Field | Description |
---|---|---|
static String |
REMOVE |
|
static char |
REMOVE_CHAR |
|
static String |
SEPARATOR |
|
static char |
SEPARATOR_CHAR |
Modifier and Type | Method | Description |
---|---|---|
static Registry.Type |
fromString(String str) |
|
String |
toString() |
|
static Registry.Type |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static Registry.Type[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Registry.Type REG_NONE
public static final Registry.Type REG_SZ
public static final Registry.Type REG_EXPAND_SZ
public static final Registry.Type REG_BINARY
public static final Registry.Type REG_DWORD
public static final Registry.Type REG_DWORD_BIG_ENDIAN
public static final Registry.Type REG_LINK
public static final Registry.Type REG_MULTI_SZ
public static final Registry.Type REG_RESOURCE_LIST
public static final Registry.Type REG_FULL_RESOURCE_DESCRIPTOR
public static final Registry.Type REG_RESOURCE_REQUIREMENTS_LIST
public static final Registry.Type REG_QWORD
public static final char SEPARATOR_CHAR
public static final String SEPARATOR
public static final char REMOVE_CHAR
public static final String REMOVE
public static Registry.Type[] values()
for (Registry.Type c : Registry.Type.values()) System.out.println(c);
public static Registry.Type 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 nullpublic static Registry.Type fromString(String str)
public String toString()
toString
in class Enum<Registry.Type>