- java.lang.Object
-
- java.lang.Enum<AbstractNativeMemory.SetMem>
-
- de.ibapl.jnhw.common.memory.AbstractNativeMemory.SetMem
-
- All Implemented Interfaces:
Serializable,Comparable<AbstractNativeMemory.SetMem>
- Enclosing class:
- AbstractNativeMemory
public static enum AbstractNativeMemory.SetMem extends Enum<AbstractNativeMemory.SetMem>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DO_NOT_SETFORCE_0x00FORCE_0x55FORCE_0xAAFORCE_0xF0FORCE_0xFFTO_0x00TO_0x0FTO_0x550b10101010TO_0xAA0b01010101TO_0xFF
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractNativeMemory.SetMemvalueOf(String name)Returns the enum constant of this type with the specified name.static AbstractNativeMemory.SetMem[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DO_NOT_SET
public static final AbstractNativeMemory.SetMem DO_NOT_SET
-
TO_0x00
public static final AbstractNativeMemory.SetMem TO_0x00
-
FORCE_0x00
public static final AbstractNativeMemory.SetMem FORCE_0x00
-
TO_0x55
public static final AbstractNativeMemory.SetMem TO_0x55
0b10101010
-
FORCE_0x55
public static final AbstractNativeMemory.SetMem FORCE_0x55
-
TO_0xAA
public static final AbstractNativeMemory.SetMem TO_0xAA
0b01010101
-
FORCE_0xAA
public static final AbstractNativeMemory.SetMem FORCE_0xAA
-
TO_0x0F
public static final AbstractNativeMemory.SetMem TO_0x0F
-
FORCE_0xF0
public static final AbstractNativeMemory.SetMem FORCE_0xF0
-
TO_0xFF
public static final AbstractNativeMemory.SetMem TO_0xFF
-
FORCE_0xFF
public static final AbstractNativeMemory.SetMem FORCE_0xFF
-
-
Method Detail
-
values
public static AbstractNativeMemory.SetMem[] 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 (AbstractNativeMemory.SetMem c : AbstractNativeMemory.SetMem.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractNativeMemory.SetMem 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
-
-