Enum SsaOperation
- java.lang.Object
-
- java.lang.Enum<SsaOperation>
-
- ru.ispras.microtesk.translator.nml.coverage.SsaOperation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SsaOperation>
public enum SsaOperation extends java.lang.Enum<SsaOperation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARGUMENT_LINK
BLOCK
CALL
CLOSURE
EXPAND
MARK
PARAMETERS
PHI
SUBSTITUTE
THIS_CALL
UPDATE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SsaOperation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SsaOperation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CALL
public static final SsaOperation CALL
-
THIS_CALL
public static final SsaOperation THIS_CALL
-
CLOSURE
public static final SsaOperation CLOSURE
-
ARGUMENT_LINK
public static final SsaOperation ARGUMENT_LINK
-
PARAMETERS
public static final SsaOperation PARAMETERS
-
PHI
public static final SsaOperation PHI
-
EXPAND
public static final SsaOperation EXPAND
-
UPDATE
public static final SsaOperation UPDATE
-
SUBSTITUTE
public static final SsaOperation SUBSTITUTE
-
BLOCK
public static final SsaOperation BLOCK
-
MARK
public static final SsaOperation MARK
-
-
Method Detail
-
values
public static SsaOperation[] 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 (SsaOperation c : SsaOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SsaOperation 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
-
-