Enum TerminalTraverserState.TerminationReason
java.lang.Object
java.lang.Enum<TerminalTraverserState.TerminationReason>
jadx.core.dex.visitors.finaly.traverser.state.TerminalTraverserState.TerminationReason
- All Implemented Interfaces:
Serializable,Comparable<TerminalTraverserState.TerminationReason>
- Enclosing class:
TerminalTraverserState
public static enum TerminalTraverserState.TerminationReason
extends Enum<TerminalTraverserState.TerminationReason>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWhen a handler was requested to find the predecessors of a block, no predecessors within the scope existed.When comparing instructions within a finally and candidate block, non-matching instructions were found calling for the termination of the Traverser.When a handler was requested to process a block, a cached result for that handler already existed. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NON_MATCHING_INSTRUCTIONS
When comparing instructions within a finally and candidate block, non-matching instructions were found calling for the termination of the Traverser. -
NON_MATCHING_PATHS
-
END_OF_PATH
When a handler was requested to find the predecessors of a block, no predecessors within the scope existed. -
USING_CACHED_RESULTS
When a handler was requested to process a block, a cached result for that handler already existed. -
UNMERGEABLE_STATE
-
UNRESOLVABLE_STATES
-
-
Constructor Details
-
TerminationReason
private TerminationReason()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-