Package com.strobel.reflection.emit
Enum StackBehavior
- java.lang.Object
-
- java.lang.Enum<StackBehavior>
-
- com.strobel.reflection.emit.StackBehavior
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StackBehavior>
public enum StackBehavior extends java.lang.Enum<StackBehavior>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Pop0
Pop1
Pop1_Pop1
PopI
PopI_Pop1
PopI_PopI
PopI_PopI_PopI
PopI_PopI8
PopI_PopR4
PopI_PopR8
PopRef
PopRef_Pop1
PopRef_PopI
PopRef_PopI_Pop1
PopRef_PopI_PopI
PopRef_PopI_PopI8
PopRef_PopI_PopR4
PopRef_PopI_PopR8
PopRef_PopI_PopRef
Push0
Push1
Push1_Push1
PushI
PushI8
PushR4
PushR8
PushRef
VarPop
VarPush
-
Constructor Summary
Constructors Modifier Constructor Description private
StackBehavior()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StackBehavior
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StackBehavior[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Pop0
public static final StackBehavior Pop0
-
Pop1
public static final StackBehavior Pop1
-
Pop1_Pop1
public static final StackBehavior Pop1_Pop1
-
PopI
public static final StackBehavior PopI
-
PopI_Pop1
public static final StackBehavior PopI_Pop1
-
PopI_PopI
public static final StackBehavior PopI_PopI
-
PopI_PopI8
public static final StackBehavior PopI_PopI8
-
PopI_PopI_PopI
public static final StackBehavior PopI_PopI_PopI
-
PopI_PopR4
public static final StackBehavior PopI_PopR4
-
PopI_PopR8
public static final StackBehavior PopI_PopR8
-
PopRef
public static final StackBehavior PopRef
-
PopRef_Pop1
public static final StackBehavior PopRef_Pop1
-
PopRef_PopI
public static final StackBehavior PopRef_PopI
-
PopRef_PopI_PopI
public static final StackBehavior PopRef_PopI_PopI
-
PopRef_PopI_PopI8
public static final StackBehavior PopRef_PopI_PopI8
-
PopRef_PopI_PopR4
public static final StackBehavior PopRef_PopI_PopR4
-
PopRef_PopI_PopR8
public static final StackBehavior PopRef_PopI_PopR8
-
PopRef_PopI_PopRef
public static final StackBehavior PopRef_PopI_PopRef
-
Push0
public static final StackBehavior Push0
-
Push1
public static final StackBehavior Push1
-
Push1_Push1
public static final StackBehavior Push1_Push1
-
PushI
public static final StackBehavior PushI
-
PushI8
public static final StackBehavior PushI8
-
PushR4
public static final StackBehavior PushR4
-
PushR8
public static final StackBehavior PushR8
-
PushRef
public static final StackBehavior PushRef
-
VarPop
public static final StackBehavior VarPop
-
VarPush
public static final StackBehavior VarPush
-
PopRef_PopI_Pop1
public static final StackBehavior PopRef_PopI_Pop1
-
-
Method Detail
-
values
public static StackBehavior[] 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 (StackBehavior c : StackBehavior.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StackBehavior valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-