The value must not be negative. To help with distributions with long tails, if the given
value is greater than or equal to endValue, the value endValue-1 is recorded
instead.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["The latest version available for the Distribution class is 2.63.1, with a wide range of previous versions, from 2.62.0 down to 2.7.1, also available for review."],["The `Distribution` class, which extends `java.lang.Object`, records numerical values between 0 (inclusive) and a specified `endValue` (exclusive) to compute their percentiles, with concurrency being supported in method calls."],["The primary constructor `Distribution(int endValue)` initializes the distribution, taking an integer as the maximum value, and key methods include `getNthPercentile`, `getPercentile`, and `record` for recording new numerical data points."],["The `record(int value)` method logs a value, and in instances where the value is equal to or greater than `endValue`, `endValue-1` will be recorded in its place, with any negative numbers not being allowed."]]],[]]