Package org.springframework.data.mapping.model

Examples of org.springframework.data.mapping.model.CamelCaseAbbreviatingFieldNamingStrategy


   * Configures a {@link FieldNamingStrategy} on the {@link CouchbaseMappingContext} instance created.
   *
   * @return the naming strategy.
   */
  protected FieldNamingStrategy fieldNamingStrategy() {
    return abbreviateFieldNames() ? new CamelCaseAbbreviatingFieldNamingStrategy() : PropertyNameFieldNamingStrategy.INSTANCE;
  }
View Full Code Here


   *
   * @return
   * @since 1.5
   */
  protected FieldNamingStrategy fieldNamingStrategy() {
    return abbreviateFieldNames() ? new CamelCaseAbbreviatingFieldNamingStrategy()
        : PropertyNameFieldNamingStrategy.INSTANCE;
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.mapping.model.CamelCaseAbbreviatingFieldNamingStrategy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.