Package com.jk.data.datasource
Enum Class DefaultPhysicalNamingStrategy.NamePattern
java.lang.Object
java.lang.Enum<DefaultPhysicalNamingStrategy.NamePattern>
com.jk.data.datasource.DefaultPhysicalNamingStrategy.NamePattern
- All Implemented Interfaces:
Serializable
,Comparable<DefaultPhysicalNamingStrategy.NamePattern>
,Constable
- Enclosing class:
- DefaultPhysicalNamingStrategy
public static enum DefaultPhysicalNamingStrategy.NamePattern
extends Enum<DefaultPhysicalNamingStrategy.NamePattern>
This enum of name patterns for conversion.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAs-it-is pattern.As-it-is with underscores pattern.Lower-case pattern.Upper-case pattern. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOWER_CASE
Lower-case pattern. -
UPPER_CASE
Upper-case pattern. -
AS_IS_WITH_UNDERSCORES
As-it-is with underscores pattern. -
AS_IS
As-it-is pattern.
-
-
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
-