public static enum Analysis.BeforeOrAfter extends Enum<Analysis.BeforeOrAfter>
Analysis#runAnalysisFor, whether to return the store before or after the
 given node.| Enum Constant and Description | 
|---|
| AFTERReturn the post-store. | 
| BEFOREReturn the pre-store. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Analysis.BeforeOrAfter | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Analysis.BeforeOrAfter[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Analysis.BeforeOrAfter BEFORE
public static final Analysis.BeforeOrAfter AFTER
public static Analysis.BeforeOrAfter[] values()
for (Analysis.BeforeOrAfter c : Analysis.BeforeOrAfter.values()) System.out.println(c);
public static Analysis.BeforeOrAfter valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null