Uses of Class
dev.morphia.mapping.NamingStrategy
-
Packages that use NamingStrategy Package Description dev.morphia.mapping -
-
Uses of NamingStrategy in dev.morphia.mapping
Methods in dev.morphia.mapping that return NamingStrategy Modifier and Type Method Description static NamingStrategy
NamingStrategy. camelCase()
Defines a naming strategy that returns camel case of the value passedNamingStrategy
MapperOptions. getCollectionNaming()
NamingStrategy
MapperOptions. getFieldNaming()
Deprecated, for removal: This API element is subject to removal in a future version.useMapperOptions.getPropertyNaming()
insteadNamingStrategy
MapperOptions. getPropertyNaming()
static NamingStrategy
NamingStrategy. identity()
Defines a naming strategy that returns the value passedstatic NamingStrategy
NamingStrategy. kebabCase()
Defines a naming strategy that returns kebab case of the value passedstatic NamingStrategy
NamingStrategy. lowerCase()
Defines a naming strategy that returns the lowercase form of the value passedstatic NamingStrategy
NamingStrategy. snakeCase()
Defines a naming strategy that returns snake case of the value passedMethods in dev.morphia.mapping with parameters of type NamingStrategy Modifier and Type Method Description MapperOptions.Builder
MapperOptions.Builder. collectionNaming(NamingStrategy strategy)
Sets the naming strategy to use for collection namesMapperOptions.Builder
MapperOptions.Builder. fieldNaming(NamingStrategy strategy)
Deprecated, for removal: This API element is subject to removal in a future version.MapperOptions.Builder
MapperOptions.Builder. propertyNaming(NamingStrategy strategy)
Sets the naming strategy to use for propertys unless expliclity set via @Property
-