public enum RefactoringKind extends java.lang.Enum<RefactoringKind>
| Enum Constant and Description |
|---|
CONVERT_GETTER_TO_METHOD |
CONVERT_METHOD_TO_GETTER |
EXTRACT_LOCAL_VARIABLE |
EXTRACT_METHOD |
INLINE_LOCAL_VARIABLE |
INLINE_METHOD |
MOVE_FILE |
RENAME |
SORT_MEMBERS |
| Modifier and Type | Method and Description |
|---|---|
static RefactoringKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RefactoringKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RefactoringKind CONVERT_GETTER_TO_METHOD
public static final RefactoringKind CONVERT_METHOD_TO_GETTER
public static final RefactoringKind EXTRACT_LOCAL_VARIABLE
public static final RefactoringKind EXTRACT_METHOD
public static final RefactoringKind INLINE_LOCAL_VARIABLE
public static final RefactoringKind INLINE_METHOD
public static final RefactoringKind MOVE_FILE
public static final RefactoringKind RENAME
public static final RefactoringKind SORT_MEMBERS
public static RefactoringKind[] values()
for (RefactoringKind c : RefactoringKind.values()) System.out.println(c);
public static RefactoringKind 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