com.sangupta.esclient.domain.field.MultiFieldDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esclient Show documentation
Show all versions of esclient Show documentation
Strongly-typed SDK for ElasticSearch
The newest version!
package com.sangupta.esclient.domain.field;
public class MultiFieldDetail {
protected FieldType type;
protected FieldAnalysis index;
/**
* Default constructor
*
*/
public MultiFieldDetail() {
}
public MultiFieldDetail(FieldType type, FieldAnalysis index) {
this.type = type;
this.index = index;
}
}