grpc.leaderboard._Order 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;
/**
* Protobuf enum {@code leaderboard._Order}
*/
public enum _Order
implements com.google.protobuf.ProtocolMessageEnum {
/**
*
* Ascending order (0 is the lowest-scoring rank)
*
*
* ASCENDING = 0;
*/
ASCENDING(0),
/**
*
* Descending order (0 is the highest-scoring rank)
*
*
* DESCENDING = 1;
*/
DESCENDING(1),
UNRECOGNIZED(-1),
;
/**
*
* Ascending order (0 is the lowest-scoring rank)
*
*
* ASCENDING = 0;
*/
public static final int ASCENDING_VALUE = 0;
/**
*
* Descending order (0 is the highest-scoring rank)
*
*
* DESCENDING = 1;
*/
public static final int DESCENDING_VALUE = 1;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static _Order valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static _Order forNumber(int value) {
switch (value) {
case 0: return ASCENDING;
case 1: return DESCENDING;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap<_Order>
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
_Order> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap<_Order>() {
public _Order findValueByNumber(int number) {
return _Order.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return grpc.leaderboard.LeaderboardOuterClass.getDescriptor().getEnumTypes().get(0);
}
private static final _Order[] VALUES = values();
public static _Order valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private _Order(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:leaderboard._Order)
}