Package play.modules.elasticsearch.annotations

Examples of play.modules.elasticsearch.annotations.ElasticSearchEmbedded


    if (!Collection.class.isAssignableFrom(field.getType())) {
      throw new MappingException("field must be of Collection type");
    }

    ElasticSearchEmbedded embed = field.getAnnotation(ElasticSearchEmbedded.class);
    nestedMode = (embed != null);

    // Detect object type in collection
    type = MappingUtil.detectFieldType(getCollectionType());
View Full Code Here

TOP

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

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.