public enum NamingType extends java.lang.Enum<NamingType>
| Enum Constant and Description |
|---|
LOWER_CASE |
NONE |
SNAKE_LOWER_CASE |
SNAKE_UPPER_CASE |
UPPER_CASE |
| Modifier and Type | Method and Description |
|---|---|
abstract java.lang.String |
apply(java.lang.String text)
ネーミング規約を適用します。
|
EnumConstants |
getEnumConstant()
列挙定数を返します。
|
java.lang.String |
getReferenceName()
参照名を返します。
|
static NamingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NamingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NamingType NONE
public static final NamingType LOWER_CASE
public static final NamingType UPPER_CASE
public static final NamingType SNAKE_UPPER_CASE
public static final NamingType SNAKE_LOWER_CASE
public static NamingType[] values()
for (NamingType c : NamingType.values()) System.out.println(c);
public static NamingType 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 nullpublic EnumConstants getEnumConstant()
public java.lang.String getReferenceName()
public abstract java.lang.String apply(java.lang.String text)
text - 規約が適用される文字列