Package play.modules.elasticsearch.annotations

Examples of play.modules.elasticsearch.annotations.ElasticSearchFieldDescriptor


  private final String prefix, indexField;

  public AbstractFieldMapper(final Field field, String prefix) {
    Validate.notNull(field, "field cannot be null");
    this.field = field;
    this.meta = new ElasticSearchFieldDescriptor(field);
    this.prefix = prefix;

    // Maybe this a premature optimization, but getIndexField() will be
    // called a lot
    indexField = prefix(field.getName());
View Full Code Here

TOP

Related Classes of play.modules.elasticsearch.annotations.ElasticSearchFieldDescriptor

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.