- All Implemented Interfaces:
Serializable,Comparable<NamingStrategyImpls>,Constable
Container for standard naming strategy implementations, specifically
used by property naming strategies (see
PropertyNamingStrategies)
and enum naming strategies (see EnumNamingStrategies).-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionbeanName->bean-namebeanName->beanNamebeanName->beannamebeanName->bean.namebeanName->bean_namebeanName->BeanNamebeanName->BEAN_NAME -
Method Summary
Modifier and TypeMethodDescriptionabstract Stringstatic NamingStrategyImplsReturns the enum constant of this class with the specified name.static NamingStrategyImpls[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOWER_CAMEL_CASE
beanName->beanName -
UPPER_CAMEL_CASE
beanName->BeanName -
SNAKE_CASE
beanName->bean_name -
UPPER_SNAKE_CASE
beanName->BEAN_NAME -
LOWER_CASE
beanName->beanname -
KEBAB_CASE
beanName->bean-name -
LOWER_DOT_CASE
beanName->bean.name
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
translate
-