public static enum StringRefactoringUtil.RefactoringMethod extends java.lang.Enum<StringRefactoringUtil.RefactoringMethod>
Enum Constant and Description |
---|
LOWER_CAMEL_CASE |
LOWERCASE |
LOWERCASE_DASHES |
NONE |
UPPER_CAMEL_CASE |
UPPERCASE |
UPPERCASE_DASHES |
Modifier and Type | Method and Description |
---|---|
static StringRefactoringUtil.RefactoringMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StringRefactoringUtil.RefactoringMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringRefactoringUtil.RefactoringMethod NONE
public static final StringRefactoringUtil.RefactoringMethod LOWERCASE
public static final StringRefactoringUtil.RefactoringMethod LOWERCASE_DASHES
public static final StringRefactoringUtil.RefactoringMethod LOWER_CAMEL_CASE
public static final StringRefactoringUtil.RefactoringMethod UPPERCASE
public static final StringRefactoringUtil.RefactoringMethod UPPERCASE_DASHES
public static final StringRefactoringUtil.RefactoringMethod UPPER_CAMEL_CASE
public static StringRefactoringUtil.RefactoringMethod[] values()
for (StringRefactoringUtil.RefactoringMethod c : StringRefactoringUtil.RefactoringMethod.values()) System.out.println(c);
public static StringRefactoringUtil.RefactoringMethod 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