Enum Class Store.FlowRule
- All Implemented Interfaces:
Serializable
,Comparable<Store.FlowRule>
,Constable
A flow rule describes how stores flow along one edge between basic blocks.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe normal case: then store flows to the then store, and else store flows to the else store.Else store flows to both then and else of successor.Else store flows to the else of successor.Then store flows to both then and else of successor.Then store flows to the then of successor. -
Method Summary
Modifier and TypeMethodDescriptionstatic Store.FlowRule
Returns the enum constant of this class with the specified name.static Store.FlowRule[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EACH_TO_EACH
The normal case: then store flows to the then store, and else store flows to the else store. -
THEN_TO_BOTH
Then store flows to both then and else of successor. -
ELSE_TO_BOTH
Else store flows to both then and else of successor. -
THEN_TO_THEN
Then store flows to the then of successor. Else store is ignored. -
ELSE_TO_ELSE
Else store flows to the else of successor. Then store is ignored.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-