Package com.kenai.jnr.x86asm
Enum HINT
- All Implemented Interfaces:
Serializable
,Comparable<HINT>
,java.lang.constant.Constable
Deprecated.
Condition hint, see @c AsmJit::Serializer::jz() and friends.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDeprecated.No hint.Deprecated.Condition will be not taken (unlikely).Deprecated.Condition will be taken (likely). -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal int
value()
Deprecated.static final HINT
valueOf
(int value) Deprecated.Returns the enum constant of this type with the specified name.static HINT
Deprecated.Returns the enum constant of this type with the specified name.static HINT[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
HINT_NONE
Deprecated.No hint. -
HINT_TAKEN
Deprecated.Condition will be taken (likely). -
HINT_NOT_TAKEN
Deprecated.Condition will be not taken (unlikely).
-
-
Field Details
-
value
private final int valueDeprecated.
-
-
Constructor Details
-
HINT
private HINT(int value) Deprecated.
-
-
Method Details
-
values
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Deprecated.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
-
value
public final int value()Deprecated. -
valueOf
Deprecated.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:
value
- 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
-