public static enum TermLabelRefactoring.RefactoringScope extends java.lang.Enum<TermLabelRefactoring.RefactoringScope>
| Enum Constant and Description | 
|---|
APPLICATION_BELOW_UPDATES
Refactor the child below the updates computed via
  
TermBuilder.goBelowUpdates(Term). | 
APPLICATION_CHILDREN_AND_GRANDCHILDREN_SUBTREE
Refactor children and grandchildren of the application term. 
 | 
APPLICATION_CHILDREN_AND_GRANDCHILDREN_SUBTREE_AND_PARENTS
Refactor the  
SequentFormula on which the rule is applied. | 
APPLICATION_DIRECT_CHILDREN
Refactor direct children of the application term. 
 | 
NONE
No refactoring required. 
 | 
SEQUENT
Refactor the whole sequent. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static TermLabelRefactoring.RefactoringScope | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static TermLabelRefactoring.RefactoringScope[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final TermLabelRefactoring.RefactoringScope NONE
public static final TermLabelRefactoring.RefactoringScope APPLICATION_BELOW_UPDATES
TermBuilder.goBelowUpdates(Term).public static final TermLabelRefactoring.RefactoringScope APPLICATION_DIRECT_CHILDREN
public static final TermLabelRefactoring.RefactoringScope APPLICATION_CHILDREN_AND_GRANDCHILDREN_SUBTREE
public static final TermLabelRefactoring.RefactoringScope APPLICATION_CHILDREN_AND_GRANDCHILDREN_SUBTREE_AND_PARENTS
SequentFormula on which the rule is applied.public static final TermLabelRefactoring.RefactoringScope SEQUENT
public static TermLabelRefactoring.RefactoringScope[] values()
for (TermLabelRefactoring.RefactoringScope c : TermLabelRefactoring.RefactoringScope.values()) System.out.println(c);
public static TermLabelRefactoring.RefactoringScope valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null