クラス Queries

java.lang.ObjectSE
org.springframework.data.elasticsearch.client.elc.Queries

public final class Queries extends ObjectSE
より複雑なクエリと型の作成を簡素化するユーティリティクラス。
導入:
4.4
作成者:
Peter-Josef Meisch
  • 方法の詳細

    • idsQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.IdsQuery idsQuery(ListSE<StringSE> ids)
    • idsQueryAsQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.Query idsQueryAsQuery(ListSE<StringSE> ids)
    • matchQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.MatchQuery matchQuery(StringSE fieldName, StringSE query, @Nullable co.elastic.clients.elasticsearch._types.query_dsl.Operator operator, @Nullable FloatSE boost)
    • matchQueryAsQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.Query matchQueryAsQuery(StringSE fieldName, StringSE query, @Nullable co.elastic.clients.elasticsearch._types.query_dsl.Operator operator, @Nullable FloatSE boost)
    • matchAllQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.MatchAllQuery matchAllQuery()
    • matchAllQueryAsQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.Query matchAllQueryAsQuery()
    • queryStringQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.QueryStringQuery queryStringQuery(StringSE fieldName, StringSE query, @Nullable FloatSE boost)
    • queryStringQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.QueryStringQuery queryStringQuery(StringSE fieldName, StringSE query, co.elastic.clients.elasticsearch._types.query_dsl.Operator defaultOperator, @Nullable FloatSE boost)
    • queryStringQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.QueryStringQuery queryStringQuery(StringSE fieldName, StringSE query, @Nullable BooleanSE analyzeWildcard, @Nullable FloatSE boost)
    • queryStringQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.QueryStringQuery queryStringQuery(StringSE fieldName, StringSE query, @Nullable BooleanSE analyzeWildcard, @Nullable co.elastic.clients.elasticsearch._types.query_dsl.Operator defaultOperator, @Nullable FloatSE boost)
    • termQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.TermQuery termQuery(StringSE fieldName, StringSE value)
    • termQueryAsQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.Query termQueryAsQuery(StringSE fieldName, StringSE value)
    • wildcardQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.WildcardQuery wildcardQuery(StringSE field, StringSE value)
    • wildcardQueryAsQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.Query wildcardQueryAsQuery(StringSE field, StringSE value)
    • wrapperQueryAsQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.Query wrapperQueryAsQuery(StringSE query)
    • wrapperQuery

      public static co.elastic.clients.elasticsearch._types.query_dsl.WrapperQuery wrapperQuery(StringSE query)
    • latLon

      public static co.elastic.clients.elasticsearch._types.LatLonGeoLocation latLon(GeoPoint geoPoint)
    • latLon

      public static co.elastic.clients.elasticsearch._types.LatLonGeoLocation latLon(double lat, double lon)
    • getTermsAggsQuery

      public static Query getTermsAggsQuery(StringSE aggsName, StringSE aggsField)
    • queryWithIds

      public static Query queryWithIds(StringSE... ids)
    • getBuilderWithMatchAllQuery

      public static BaseQueryBuilder<?,?> getBuilderWithMatchAllQuery()
    • getBuilderWithTermQuery

      public static BaseQueryBuilder<?,?> getBuilderWithTermQuery(StringSE field, StringSE value)