All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sangupta.esclient.domain.field.MultiFieldDetail Maven / Gradle / Ivy

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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy