Enum Class InstructionFlags
- All Implemented Interfaces:
Serializable
,Comparable<InstructionFlags>
,Constable
Instruction flags; these flags encode additional static information (i.e. information that are
always true, whatever the context).
Note: for dynamic information, see InstructionHints
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionInstruction executes conditionallyInstruction interrupts normal execution flowThe instruction is a clean routine terminator (ex: a return-like or throw-like instruction)Unpredictable instruction (may execute correctly/unexpectedly or raise) -
Method Summary
Modifier and TypeMethodDescriptionstatic InstructionFlags
Returns the enum constant of this class with the specified name.static InstructionFlags[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONDITIONAL_EXEC
Instruction executes conditionally -
INTERRUPT_EXEC
Instruction interrupts normal execution flow -
UNPREDICTABLE_INSN
Unpredictable instruction (may execute correctly/unexpectedly or raise) -
ROUTINE_TERMINATOR
The instruction is a clean routine terminator (ex: a return-like or throw-like instruction)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-