public static enum Aggregator.SubAggCollectionMode extends Enum<Aggregator.SubAggCollectionMode>
| 列挙型定数と説明 |
|---|
BREADTH_FIRST
Creates buckets for all matching docs and then prunes to top-scoring buckets
before a second pass over the data when child aggregators are called
but only for docs from the top-scoring buckets
|
DEPTH_FIRST
Creates buckets and delegates to child aggregators in a single pass over
the matching documents
|
| 修飾子とタイプ | フィールドと説明 |
|---|---|
static ParseField |
KEY |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
static Aggregator.SubAggCollectionMode |
parse(String value,
ParseFieldMatcher parseFieldMatcher) |
ParseField |
parseField() |
static Aggregator.SubAggCollectionMode |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static Aggregator.SubAggCollectionMode[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final Aggregator.SubAggCollectionMode DEPTH_FIRST
public static final Aggregator.SubAggCollectionMode BREADTH_FIRST
public static final ParseField KEY
public static Aggregator.SubAggCollectionMode[] values()
for(Aggregator.SubAggCollectionMode c: Aggregator.SubAggCollectionMode.values()) System.out.println(c);
public static Aggregator.SubAggCollectionMode valueOf(String name)
name - 返される列挙型定数の名前。IllegalArgumentException - この列挙型に、指定した名前の定数がない場合NullPointerException - 引数がnullの場合public ParseField parseField()
public static Aggregator.SubAggCollectionMode parse(String value, ParseFieldMatcher parseFieldMatcher)
Copyright © 2009–2016. All rights reserved.