Package | Description |
---|---|
com.datastax.driver.mapping |
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 |
NamingConventions.LOWER_CAMEL_CASE
Represents the default Camel case naming
convention, with a lower cased first letter.
|
static NamingConvention |
NamingConventions.LOWER_CASE
Represents a naming convention where all letters are lower cased, and words are not separated
by any special character.
|
static NamingConvention |
NamingConventions.LOWER_LISP_CASE
Represents Lisp
case naming convention, meaning all letters are lower cased, and words are separated by a
dash sign ("-").
|
static NamingConvention |
NamingConventions.LOWER_SNAKE_CASE
Represents snake case naming convention,
meaning all letters are lower cased, and words are separated by an underscore ("_").
|
static NamingConvention |
NamingConventions.UPPER_CAMEL_CASE
Represents the default Camel case naming
convention, with an upper cased first letter.
|
static NamingConvention |
NamingConventions.UPPER_CASE
Represents a naming convention where all letters are upper cased, and words are not separated
by any special character.
|
static NamingConvention |
NamingConventions.UPPER_LISP_CASE
Represents Lisp
case naming convention, meaning all letters are upper cased, and words are separated by a
dash sign ("-").
|
static NamingConvention |
NamingConventions.UPPER_SNAKE_CASE
Represents snake case naming convention,
meaning all letters are upper cased, and words are separated by an underscore ("_").
|
Constructor and Description |
---|
DefaultNamingStrategy(NamingConvention javaConvention,
NamingConvention cassandraConvention)
Builds a new instance.
|
Copyright © 2012–2018. All rights reserved.