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 SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionBoth stores flow to the else of successor.Both stores flow to the then of successor.The 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 SummaryModifier and TypeMethodDescriptionstatic Store.FlowRuleReturns 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_EACHThe normal case: then store flows to the then store, and else store flows to the else store.
- 
THEN_TO_BOTHThen store flows to both then and else of successor.
- 
ELSE_TO_BOTHElse store flows to both then and else of successor.
- 
THEN_TO_THENThen store flows to the then of successor. Else store is ignored.
- 
ELSE_TO_ELSEElse store flows to the else of successor. Then store is ignored.
- 
BOTH_TO_THENBoth stores flow to the then of successor.
- 
BOTH_TO_ELSEBoth stores flow to the else of successor.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-