Package jnr.a64asm
Enum EXTEND_ENUM
- java.lang.Object
-
- java.lang.Enum<EXTEND_ENUM>
-
- jnr.a64asm.EXTEND_ENUM
-
- All Implemented Interfaces:
Serializable
,Comparable<EXTEND_ENUM>
public enum EXTEND_ENUM extends Enum<EXTEND_ENUM>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
intValue()
static EXTEND_ENUM
valueOf(String name)
Returns the enum constant of this type with the specified name.static EXTEND_ENUM[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UXTB
public static final EXTEND_ENUM UXTB
-
UXTH
public static final EXTEND_ENUM UXTH
-
UXTW
public static final EXTEND_ENUM UXTW
-
LSL
public static final EXTEND_ENUM LSL
-
UXTX
public static final EXTEND_ENUM UXTX
-
SXTB
public static final EXTEND_ENUM SXTB
-
SXTH
public static final EXTEND_ENUM SXTH
-
SXTW
public static final EXTEND_ENUM SXTW
-
SXTX
public static final EXTEND_ENUM SXTX
-
-
Method Detail
-
values
public static EXTEND_ENUM[] 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 (EXTEND_ENUM c : EXTEND_ENUM.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EXTEND_ENUM 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
-
intValue
public final int intValue()
-
-