Package nbbrd.io.win
Enum RegWrapper.RegType
- java.lang.Object
-
- java.lang.Enum<RegWrapper.RegType>
-
- nbbrd.io.win.RegWrapper.RegType
-
- All Implemented Interfaces:
Serializable,Comparable<RegWrapper.RegType>
- Enclosing class:
- RegWrapper
public static enum RegWrapper.RegType extends Enum<RegWrapper.RegType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description REG_BINARYREG_DWORDREG_EXPAND_SZREG_MULTI_SZREG_NONEREG_QWORDREG_SZ
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RegWrapper.RegTypevalueOf(String name)Returns the enum constant of this type with the specified name.static RegWrapper.RegType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REG_SZ
public static final RegWrapper.RegType REG_SZ
-
REG_MULTI_SZ
public static final RegWrapper.RegType REG_MULTI_SZ
-
REG_EXPAND_SZ
public static final RegWrapper.RegType REG_EXPAND_SZ
-
REG_DWORD
public static final RegWrapper.RegType REG_DWORD
-
REG_QWORD
public static final RegWrapper.RegType REG_QWORD
-
REG_BINARY
public static final RegWrapper.RegType REG_BINARY
-
REG_NONE
public static final RegWrapper.RegType REG_NONE
-
-
Method Detail
-
values
public static RegWrapper.RegType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RegWrapper.RegType c : RegWrapper.RegType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RegWrapper.RegType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-