Package jnr.a64asm
Enum PREF_ENUM
- java.lang.Object
-
- java.lang.Enum<PREF_ENUM>
-
- jnr.a64asm.PREF_ENUM
-
- All Implemented Interfaces:
Serializable
,Comparable<PREF_ENUM>
public enum PREF_ENUM extends Enum<PREF_ENUM>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PREF_ENUM
valueOf(String name)
Returns the enum constant of this type with the specified name.static PREF_ENUM[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLDL1KEEP
public static final PREF_ENUM PLDL1KEEP
-
PLDL1STRM
public static final PREF_ENUM PLDL1STRM
-
PLDL2KEEP
public static final PREF_ENUM PLDL2KEEP
-
PLDL2STRM
public static final PREF_ENUM PLDL2STRM
-
PLDL3KEEP
public static final PREF_ENUM PLDL3KEEP
-
PLDL3STRM
public static final PREF_ENUM PLDL3STRM
-
PSTL1KEEP
public static final PREF_ENUM PSTL1KEEP
-
PSTL1STRM
public static final PREF_ENUM PSTL1STRM
-
PSTL2KEEP
public static final PREF_ENUM PSTL2KEEP
-
PSTL2STRM
public static final PREF_ENUM PSTL2STRM
-
PSTL3KEEP
public static final PREF_ENUM PSTL3KEEP
-
PSTL3STRM
public static final PREF_ENUM PSTL3STRM
-
PLIL1KEEP
public static final PREF_ENUM PLIL1KEEP
-
PLIL1STRM
public static final PREF_ENUM PLIL1STRM
-
PLIL2KEEP
public static final PREF_ENUM PLIL2KEEP
-
PLIL2STRM
public static final PREF_ENUM PLIL2STRM
-
PLIL3KEEP
public static final PREF_ENUM PLIL3KEEP
-
PLIL3STRM
public static final PREF_ENUM PLIL3STRM
-
-
Method Detail
-
values
public static PREF_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 (PREF_ENUM c : PREF_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 PREF_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
-
-