com.google.cloud.automl.v1beta1.Float64StatsOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-automl-v1beta1 Show documentation
Show all versions of proto-google-cloud-automl-v1beta1 Show documentation
PROTO library for proto-google-cloud-automl-v1beta1
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/automl/v1beta1/data_stats.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.automl.v1beta1;
public interface Float64StatsOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.automl.v1beta1.Float64Stats)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The mean of the series.
*
*
* double mean = 1;
*
* @return The mean.
*/
double getMean();
/**
*
*
*
* The standard deviation of the series.
*
*
* double standard_deviation = 2;
*
* @return The standardDeviation.
*/
double getStandardDeviation();
/**
*
*
*
* Ordered from 0 to k k-quantile values of the data series of n values.
* The value at index i is, approximately, the i*n/k-th smallest value in the
* series; for i = 0 and i = k these are, respectively, the min and max
* values.
*
*
* repeated double quantiles = 3;
*
* @return A list containing the quantiles.
*/
java.util.List getQuantilesList();
/**
*
*
*
* Ordered from 0 to k k-quantile values of the data series of n values.
* The value at index i is, approximately, the i*n/k-th smallest value in the
* series; for i = 0 and i = k these are, respectively, the min and max
* values.
*
*
* repeated double quantiles = 3;
*
* @return The count of quantiles.
*/
int getQuantilesCount();
/**
*
*
*
* Ordered from 0 to k k-quantile values of the data series of n values.
* The value at index i is, approximately, the i*n/k-th smallest value in the
* series; for i = 0 and i = k these are, respectively, the min and max
* values.
*
*
* repeated double quantiles = 3;
*
* @param index The index of the element to return.
* @return The quantiles at the given index.
*/
double getQuantiles(int index);
/**
*
*
*
* Histogram buckets of the data series. Sorted by the min value of the
* bucket, ascendingly, and the number of the buckets is dynamically
* generated. The buckets are non-overlapping and completely cover whole
* FLOAT64 range with min of first bucket being `"-Infinity"`, and max of
* the last one being `"Infinity"`.
*
*
* repeated .google.cloud.automl.v1beta1.Float64Stats.HistogramBucket histogram_buckets = 4;
*
*/
java.util.List
getHistogramBucketsList();
/**
*
*
*
* Histogram buckets of the data series. Sorted by the min value of the
* bucket, ascendingly, and the number of the buckets is dynamically
* generated. The buckets are non-overlapping and completely cover whole
* FLOAT64 range with min of first bucket being `"-Infinity"`, and max of
* the last one being `"Infinity"`.
*
*
* repeated .google.cloud.automl.v1beta1.Float64Stats.HistogramBucket histogram_buckets = 4;
*
*/
com.google.cloud.automl.v1beta1.Float64Stats.HistogramBucket getHistogramBuckets(int index);
/**
*
*
*
* Histogram buckets of the data series. Sorted by the min value of the
* bucket, ascendingly, and the number of the buckets is dynamically
* generated. The buckets are non-overlapping and completely cover whole
* FLOAT64 range with min of first bucket being `"-Infinity"`, and max of
* the last one being `"Infinity"`.
*
*
* repeated .google.cloud.automl.v1beta1.Float64Stats.HistogramBucket histogram_buckets = 4;
*
*/
int getHistogramBucketsCount();
/**
*
*
*
* Histogram buckets of the data series. Sorted by the min value of the
* bucket, ascendingly, and the number of the buckets is dynamically
* generated. The buckets are non-overlapping and completely cover whole
* FLOAT64 range with min of first bucket being `"-Infinity"`, and max of
* the last one being `"Infinity"`.
*
*
* repeated .google.cloud.automl.v1beta1.Float64Stats.HistogramBucket histogram_buckets = 4;
*
*/
java.util.List extends com.google.cloud.automl.v1beta1.Float64Stats.HistogramBucketOrBuilder>
getHistogramBucketsOrBuilderList();
/**
*
*
*
* Histogram buckets of the data series. Sorted by the min value of the
* bucket, ascendingly, and the number of the buckets is dynamically
* generated. The buckets are non-overlapping and completely cover whole
* FLOAT64 range with min of first bucket being `"-Infinity"`, and max of
* the last one being `"Infinity"`.
*
*
* repeated .google.cloud.automl.v1beta1.Float64Stats.HistogramBucket histogram_buckets = 4;
*
*/
com.google.cloud.automl.v1beta1.Float64Stats.HistogramBucketOrBuilder
getHistogramBucketsOrBuilder(int index);
}