Package com.ibm.wala.ipa.slicer
Enum Statement.Kind
- java.lang.Object
-
- java.lang.Enum<Statement.Kind>
-
- com.ibm.wala.ipa.slicer.Statement.Kind
-
- All Implemented Interfaces:
Serializable
,Comparable<Statement.Kind>
- Enclosing class:
- Statement
public static enum Statement.Kind extends Enum<Statement.Kind>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CATCH
EXC_RET_CALLEE
EXC_RET_CALLER
HEAP_PARAM_CALLEE
HEAP_PARAM_CALLER
HEAP_RET_CALLEE
HEAP_RET_CALLER
METHOD_ENTRY
METHOD_EXIT
NORMAL
NORMAL_RET_CALLEE
NORMAL_RET_CALLER
PARAM_CALLEE
PARAM_CALLER
PHI
PI
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Statement.Kind
valueOf(String name)
Returns the enum constant of this type with the specified name.static Statement.Kind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORMAL
public static final Statement.Kind NORMAL
-
PHI
public static final Statement.Kind PHI
-
PI
public static final Statement.Kind PI
-
CATCH
public static final Statement.Kind CATCH
-
PARAM_CALLER
public static final Statement.Kind PARAM_CALLER
-
PARAM_CALLEE
public static final Statement.Kind PARAM_CALLEE
-
NORMAL_RET_CALLER
public static final Statement.Kind NORMAL_RET_CALLER
-
NORMAL_RET_CALLEE
public static final Statement.Kind NORMAL_RET_CALLEE
-
EXC_RET_CALLER
public static final Statement.Kind EXC_RET_CALLER
-
EXC_RET_CALLEE
public static final Statement.Kind EXC_RET_CALLEE
-
HEAP_PARAM_CALLER
public static final Statement.Kind HEAP_PARAM_CALLER
-
HEAP_PARAM_CALLEE
public static final Statement.Kind HEAP_PARAM_CALLEE
-
HEAP_RET_CALLER
public static final Statement.Kind HEAP_RET_CALLER
-
HEAP_RET_CALLEE
public static final Statement.Kind HEAP_RET_CALLEE
-
METHOD_ENTRY
public static final Statement.Kind METHOD_ENTRY
-
METHOD_EXIT
public static final Statement.Kind METHOD_EXIT
-
-
Method Detail
-
values
public static Statement.Kind[] 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 (Statement.Kind c : Statement.Kind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Statement.Kind 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
-
-