Enum AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification
- java.lang.Object
-
- java.lang.Enum<AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification>
-
- org.benf.cfr.reader.bytecode.analysis.opgraph.op4rewriters.AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification>
- Enclosing class:
- AssertRewriter.ControlFlowSwitchExpressionTransformer
static enum AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification extends java.lang.Enum<AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FALSE_BLOCK
INNER
TOO_FAR
TRUE_BLOCK
-
Constructor Summary
Constructors Modifier Constructor Description private
BreakClassification()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRUE_BLOCK
public static final AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification TRUE_BLOCK
-
FALSE_BLOCK
public static final AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification FALSE_BLOCK
-
TOO_FAR
public static final AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification TOO_FAR
-
INNER
public static final AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification INNER
-
-
Method Detail
-
values
public static AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification[] 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 (AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification c : AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AssertRewriter.ControlFlowSwitchExpressionTransformer.BreakClassification 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
-
-