Package org.jitsi.utils.stats
Enum BucketStats.Format
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum BucketStats.Format extends Enum<BucketStats.Format>
How to format the JSON output.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<BucketStats.Format>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description SeparateInclude individual buckets, e.g. [min, 0), [0, 10), [10, 20), 20, max
CumulativeLeftCombine buckets summing from the left, e.g. [min, 0), [min, 10), [min, 20)
CumulativeRightCombine buckets summing from the right, e.g. 0, max, 10, max, 20, max
-
Method Summary
Modifier and Type Method Description final BucketStats.FormatvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<BucketStats.Format>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<BucketStats.Format>getEntries()How to format the JSON output. -
-
Method Detail
-
valueOf
final BucketStats.Format valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<BucketStats.Format> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<BucketStats.Format> getEntries()
How to format the JSON output.
-
-
-
-