public static enum RegData.RegType extends Enum<RegData.RegType>
| Enum Constant and Description |
|---|
REG_BINARY |
REG_DWORD |
REG_EXPAND_SZ |
REG_LINK |
REG_MULTI_SZ |
REG_NONE |
REG_QWORD |
REG_SZ |
| Modifier and Type | Method and Description |
|---|---|
static RegData.RegType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegData.RegType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegData.RegType REG_BINARY
public static final RegData.RegType REG_DWORD
public static final RegData.RegType REG_EXPAND_SZ
public static final RegData.RegType REG_LINK
public static final RegData.RegType REG_MULTI_SZ
public static final RegData.RegType REG_NONE
public static final RegData.RegType REG_QWORD
public static final RegData.RegType REG_SZ
public static RegData.RegType[] values()
for (RegData.RegType c : RegData.RegType.values()) System.out.println(c);
public static RegData.RegType 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 © 2024. All rights reserved.