public class NamingConventions extends Object
| Modifier and Type | Class and Description | 
|---|---|
static class  | 
NamingConventions.CamelCase  | 
static class  | 
NamingConventions.CharDelimitedNamingConvention  | 
static class  | 
NamingConventions.LowerCamelCase
Represents Camel case naming convention
 with a lower cased first letter. 
 | 
static class  | 
NamingConventions.SingleWordNamingConvention  | 
static class  | 
NamingConventions.UpperCamelCase
Represents Camel case naming convention
 with an upper cased first letter. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
static NamingConvention | 
LOWER_CAMEL_CASE
Represents the default Camel case naming
 convention, with a lower cased first letter. 
 | 
static NamingConvention | 
LOWER_CASE
Represents a naming convention where all letters are lower cased, and words are not separated
 by any special character. 
 | 
static NamingConvention | 
LOWER_LISP_CASE
Represents Lisp
 case naming convention, meaning all letters are lower cased, and words are separated by a
 dash sign ("-"). 
 | 
static NamingConvention | 
LOWER_SNAKE_CASE
Represents snake case naming convention,
 meaning all letters are lower cased, and words are separated by an underscore ("_"). 
 | 
static NamingConvention | 
UPPER_CAMEL_CASE
Represents the default Camel case naming
 convention, with an upper cased first letter. 
 | 
static NamingConvention | 
UPPER_CASE
Represents a naming convention where all letters are upper cased, and words are not separated
 by any special character. 
 | 
static NamingConvention | 
UPPER_LISP_CASE
Represents Lisp
 case naming convention, meaning all letters are upper cased, and words are separated by a
 dash sign ("-"). 
 | 
static NamingConvention | 
UPPER_SNAKE_CASE
Represents 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–2019. All rights reserved.