Package com.iizigo.project.refactor
Enum RefactoringGroup
- java.lang.Object
- java.lang.Enum<RefactoringGroup>
- com.iizigo.project.refactor.RefactoringGroup
 
 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<RefactoringGroup>
 - public enum RefactoringGroup extends java.lang.Enum<RefactoringGroup> Enumeration for Refactoring Groups.
- Method Summary- All Methods Static Methods Instance Methods Concrete Methods - Modifier and Type - Method - Description - boolean- hasBeenPerformed(int bitValue)Checks if any group operation has been performed.- static RefactoringGroup- valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.- static RefactoringGroup[]- values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- Enum Constant Detail- PROPERTY- public static final RefactoringGroup PROPERTY Property (3 bits).
 - CONTAINER- public static final RefactoringGroup CONTAINER Property container (3 bits).
 - FILE- public static final RefactoringGroup FILE File (4 bits).
 - FOLDER- public static final RefactoringGroup FOLDER Folder (3 bits).
 - PROJECT- public static final RefactoringGroup PROJECT Project (4 bits).
 
 - Method Detail- values- public static RefactoringGroup[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:- for (RefactoringGroup c : RefactoringGroup.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - valueOf- public static RefactoringGroup valueOf(java.lang.String name) 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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - hasBeenPerformed- public boolean hasBeenPerformed(int bitValue) Checks if any group operation has been performed.