Package tilda.enums
Enum ConventionNaming
- java.lang.Object
-
- java.lang.Enum<ConventionNaming>
-
- tilda.enums.ConventionNaming
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ConventionNaming>
public enum ConventionNaming extends java.lang.Enum<ConventionNaming>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CAMEL_CASE_JS
Traditional Java/JS variable naming convention [a-z][a-zA-Z0-9]+ such as "nameTitle", "nameFirst" "dbType" etc...NONE
No convention setUNDERSCORE_LOWER_DB
Traditional database-style naming convention [a-z][a-zA-Z0-9_]+ such as "name_title", "name_first", "db_type"
-
Field Summary
Fields Modifier and Type Field Description protected java.util.regex.Pattern
_p
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConventionNaming
parse(java.lang.String Str)
boolean
validateColumnName(java.lang.String name)
static ConventionNaming
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ConventionNaming[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ConventionNaming NONE
No convention set
-
CAMEL_CASE_JS
public static final ConventionNaming CAMEL_CASE_JS
Traditional Java/JS variable naming convention [a-z][a-zA-Z0-9]+ such as "nameTitle", "nameFirst" "dbType" etc...
-
UNDERSCORE_LOWER_DB
public static final ConventionNaming UNDERSCORE_LOWER_DB
Traditional database-style naming convention [a-z][a-zA-Z0-9_]+ such as "name_title", "name_first", "db_type"
-
-
Method Detail
-
values
public static ConventionNaming[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ConventionNaming c : ConventionNaming.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConventionNaming valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
parse
public static ConventionNaming parse(java.lang.String Str)
-
validateColumnName
public boolean validateColumnName(java.lang.String name)
-
-