public enum PercentilesMethod extends Enum<PercentilesMethod>
| 列挙型定数と説明 |
|---|
HDR
The HDRHistogram method of calculating percentiles
|
TDIGEST
The TDigest method for calculating percentiles
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
String |
getName() |
static PercentilesMethod |
resolveFromName(String name)
Returns the
PercentilesMethod for this method name. returns
null if no PercentilesMethod exists for the name. |
static PercentilesMethod |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static PercentilesMethod[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final PercentilesMethod TDIGEST
public static final PercentilesMethod HDR
public static PercentilesMethod[] values()
for(PercentilesMethod c: PercentilesMethod.values()) System.out.println(c);
public static PercentilesMethod valueOf(String name)
name - 返される列挙型定数の名前。IllegalArgumentException - この列挙型に、指定した名前の定数がない場合NullPointerException - 引数がnullの場合public String getName()
public static PercentilesMethod resolveFromName(String name)
PercentilesMethod for this method name. returns
null if no PercentilesMethod exists for the name.Copyright © 2009–2016. All rights reserved.