Enum Class ControlOpDescriptor
java.lang.Object
java.lang.Enum<ControlOpDescriptor>
ai.timefold.jpyinterpreter.opcodes.descriptor.ControlOpDescriptor
- All Implemented Interfaces:
OpcodeDescriptor,Serializable,Comparable<ControlOpDescriptor>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionReturns with TOS to the caller of the function. -
Method Summary
Modifier and TypeMethodDescriptionstatic ControlOpDescriptorReturns the enum constant of this class with the specified name.static ControlOpDescriptor[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface ai.timefold.jpyinterpreter.opcodes.descriptor.OpcodeDescriptor
name
-
Enum Constant Details
-
RETURN_VALUE
Returns with TOS to the caller of the function. -
RETURN_CONST
-
JUMP_FORWARD
-
JUMP_BACKWARD
-
JUMP_BACKWARD_NO_INTERRUPT
-
POP_JUMP_IF_TRUE
-
POP_JUMP_FORWARD_IF_TRUE
-
POP_JUMP_BACKWARD_IF_TRUE
-
POP_JUMP_IF_FALSE
-
POP_JUMP_FORWARD_IF_FALSE
-
POP_JUMP_BACKWARD_IF_FALSE
-
POP_JUMP_IF_NONE
-
POP_JUMP_IF_NOT_NONE
-
POP_JUMP_FORWARD_IF_NONE
-
POP_JUMP_BACKWARD_IF_NONE
-
POP_JUMP_FORWARD_IF_NOT_NONE
-
POP_JUMP_BACKWARD_IF_NOT_NONE
-
JUMP_IF_NOT_EXC_MATCH
-
JUMP_IF_TRUE_OR_POP
-
JUMP_IF_FALSE_OR_POP
-
JUMP_ABSOLUTE
-
FOR_ITER
-
END_FOR
-
-
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
-
getVersionMapping
- Specified by:
getVersionMappingin interfaceOpcodeDescriptor
-