grpc.leaderboard._ScoreRangeOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos-jvm Show documentation
Show all versions of client-protos-jvm Show documentation
Kotlin protobuf protocols for the JVM that define the Momento gRPC wire format
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: leaderboard.proto
package grpc.leaderboard;
public interface _ScoreRangeOrBuilder extends
// @@protoc_insertion_point(interface_extends:leaderboard._ScoreRange)
com.google.protobuf.MessageOrBuilder {
/**
* .common._Unbounded unbounded_min = 1;
* @return Whether the unboundedMin field is set.
*/
boolean hasUnboundedMin();
/**
* .common._Unbounded unbounded_min = 1;
* @return The unboundedMin.
*/
grpc.common._Unbounded getUnboundedMin();
/**
* .common._Unbounded unbounded_min = 1;
*/
grpc.common._UnboundedOrBuilder getUnboundedMinOrBuilder();
/**
*
* IEEE 754 single precision 64 bit floating point number.
* Momento does not support NaN or Inf in leaderboards.
*
*
* double min_inclusive = 5;
* @return Whether the minInclusive field is set.
*/
boolean hasMinInclusive();
/**
*
* IEEE 754 single precision 64 bit floating point number.
* Momento does not support NaN or Inf in leaderboards.
*
*
* double min_inclusive = 5;
* @return The minInclusive.
*/
double getMinInclusive();
/**
* .common._Unbounded unbounded_max = 3;
* @return Whether the unboundedMax field is set.
*/
boolean hasUnboundedMax();
/**
* .common._Unbounded unbounded_max = 3;
* @return The unboundedMax.
*/
grpc.common._Unbounded getUnboundedMax();
/**
* .common._Unbounded unbounded_max = 3;
*/
grpc.common._UnboundedOrBuilder getUnboundedMaxOrBuilder();
/**
*
* IEEE 754 single precision 64 bit floating point number.
* Momento does not support NaN or Inf in leaderboards.
*
*
* double max_exclusive = 6;
* @return Whether the maxExclusive field is set.
*/
boolean hasMaxExclusive();
/**
*
* IEEE 754 single precision 64 bit floating point number.
* Momento does not support NaN or Inf in leaderboards.
*
*
* double max_exclusive = 6;
* @return The maxExclusive.
*/
double getMaxExclusive();
grpc.leaderboard._ScoreRange.MinCase getMinCase();
grpc.leaderboard._ScoreRange.MaxCase getMaxCase();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy