Package tilda.enums

Enum 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 set
      UNDERSCORE_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.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • 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"
    • Field Detail

      • _p

        protected final java.util.regex.Pattern _p
    • 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 name
        java.lang.NullPointerException - if the argument is null
      • validateColumnName

        public boolean validateColumnName​(java.lang.String name)