| Package | Description |
|---|---|
| gov.usgs.earthquake.nshmp.data |
Double-valued data utilities.
|
| Modifier and Type | Method and Description |
|---|---|
IntervalArray.Builder |
IntervalArray.Builder.add(double[] values)
Add to the array being built.
|
IntervalArray.Builder |
IntervalArray.Builder.add(double row,
double value)
Add to the existing value at the specified row.
|
IntervalArray.Builder |
IntervalArray.Builder.add(double row,
double[] values)
Add to the array being built starting at the specified row.
|
IntervalArray.Builder |
IntervalArray.Builder.add(double row,
List<Double> values)
Add to the array being built starting at the specified row.
|
IntervalArray.Builder |
IntervalArray.Builder.add(int row,
double value)
Add to the existing value at the specified row.
|
IntervalArray.Builder |
IntervalArray.Builder.add(IntervalArray array)
Add the values in the supplied array to this builder.
|
IntervalArray.Builder |
IntervalArray.Builder.add(List<Double> values)
Add to the array being built.
|
IntervalArray.Builder |
IntervalArray.Builder.add(XySequence sequence)
Add the y-values of the supplied sequence to the array being built.
|
IntervalArray.Builder |
IntervalArray.Builder.addEach(XySequence sequence)
Add each value-pair of the supplied sequence to the appropriate interval.
|
static IntervalArray.Builder |
IntervalArray.Builder.copyOf(IntervalArray array)
Create a new builder with the structure and content identical to that of
the supplied array.
|
static IntervalArray.Builder |
IntervalArray.Builder.fromModel(IntervalArray model)
Create a new builder with a structure identical to that of the supplied
model.
|
IntervalArray.Builder |
IntervalArray.Builder.multiply(double scale)
Multiply (
scale) all values in this builder. |
IntervalArray.Builder |
IntervalArray.Builder.set(double row,
double value)
Set the value at the specified row.
|
IntervalArray.Builder |
IntervalArray.Builder.set(int row,
double value)
Set the value at the specified row.
|
static IntervalArray.Builder |
IntervalArray.Builder.withRows(double min,
double max,
double Δ)
Define the array intervals.
|