public class NamingConventions extends Object
| Modifier and Type | Class and Description | 
|---|---|
| static class  | NamingConventions.CamelCase | 
| static class  | NamingConventions.CharDelimitedNamingConvention | 
| static class  | NamingConventions.LowerCamelCaseRepresents Camel case
 naming convention with a lower cased first letter. | 
| static class  | NamingConventions.SingleWordNamingConvention | 
| static class  | NamingConventions.UpperCamelCaseRepresents Camel case
 naming convention with an upper cased first letter. | 
| Modifier and Type | Field and Description | 
|---|---|
| static NamingConvention | LOWER_CAMEL_CASERepresents the default Camel case naming convention,
 with a lower cased first letter. | 
| static NamingConvention | LOWER_CASERepresents a naming convention where all letters are lower cased,
 and words are not separated by any special character. | 
| static NamingConvention | LOWER_LISP_CASERepresents Lisp case naming convention,
 meaning all letters are lower cased,
 and words are separated by a dash sign ("-"). | 
| static NamingConvention | LOWER_SNAKE_CASERepresents snake case naming convention, meaning all letters are lower cased,
 and words are separated by an underscore ("_"). | 
| static NamingConvention | UPPER_CAMEL_CASERepresents the default Camel case naming convention,
 with an upper cased first letter. | 
| static NamingConvention | UPPER_CASERepresents a naming convention where all letters are upper cased,
 and words are not separated by any special character. | 
| static NamingConvention | UPPER_LISP_CASERepresents Lisp case naming convention,
 meaning all letters are upper cased,
 and words are separated by a dash sign ("-"). | 
| static NamingConvention | UPPER_SNAKE_CASERepresents snake case naming convention, meaning all letters are upper cased,
 and words are separated by an underscore ("_"). | 
| Constructor and Description | 
|---|
| NamingConventions() | 
public static final NamingConvention LOWER_CASE
public static final NamingConvention UPPER_CASE
public static final NamingConvention LOWER_SNAKE_CASE
public static final NamingConvention UPPER_SNAKE_CASE
public static final NamingConvention LOWER_LISP_CASE
public static final NamingConvention UPPER_LISP_CASE
public static final NamingConvention LOWER_CAMEL_CASE
NamingConventions.LowerCamelCasepublic static final NamingConvention UPPER_CAMEL_CASE
NamingConventions.UpperCamelCaseCopyright © 2012–2017. All rights reserved.