io.polyglotted.eswrapper.ElasticConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of es-wrapper Show documentation
Show all versions of es-wrapper Show documentation
Standard set of utilities for elastic search abstraction
package io.polyglotted.eswrapper;
public abstract class ElasticConstants {
public static final String INDEX_META = "_index";
public static final String TYPE_META = "_type";
public static final String ID_META = "_id";
public static final String ALL_META = "_all";
public static final String SOURCE_META = "_source";
public static final String PARENT_META = "_parent";
public static final String ROUTING_META = "_routing";
public static final String VERSION_META = "_version";
public static final String FIELD_NAMES_META = "_field_names";
public static final String META_META = "_meta";
public static final String TTL_META = "_ttl";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy