main.java.com.streamlayer.sports.common.EventEndless Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sl-protofiles Show documentation
Show all versions of sl-protofiles Show documentation
StreamLayer Java Protofiles
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: streamlayer/sports/sports_common.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.sports.common;
/**
* Protobuf enum {@code streamlayer.sports.EventEndless}
*/
public enum EventEndless
implements com.google.protobuf.Internal.EnumLite {
/**
* EVENT_ENDLESS_UNSET = 0;
*/
EVENT_ENDLESS_UNSET(0),
/**
* EVENT_ENDLESS_ENABLED = 1;
*/
EVENT_ENDLESS_ENABLED(1),
/**
* EVENT_ENDLESS_DISABLED = 2;
*/
EVENT_ENDLESS_DISABLED(2),
UNRECOGNIZED(-1),
;
/**
* EVENT_ENDLESS_UNSET = 0;
*/
public static final int EVENT_ENDLESS_UNSET_VALUE = 0;
/**
* EVENT_ENDLESS_ENABLED = 1;
*/
public static final int EVENT_ENDLESS_ENABLED_VALUE = 1;
/**
* EVENT_ENDLESS_DISABLED = 2;
*/
public static final int EVENT_ENDLESS_DISABLED_VALUE = 2;
@java.lang.Override
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 number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static EventEndless valueOf(int value) {
return forNumber(value);
}
public static EventEndless forNumber(int value) {
switch (value) {
case 0: return EVENT_ENDLESS_UNSET;
case 1: return EVENT_ENDLESS_ENABLED;
case 2: return EVENT_ENDLESS_DISABLED;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
EventEndless> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
@java.lang.Override
public EventEndless findValueByNumber(int number) {
return EventEndless.forNumber(number);
}
};
public static com.google.protobuf.Internal.EnumVerifier
internalGetVerifier() {
return EventEndlessVerifier.INSTANCE;
}
private static final class EventEndlessVerifier implements
com.google.protobuf.Internal.EnumVerifier {
static final com.google.protobuf.Internal.EnumVerifier INSTANCE = new EventEndlessVerifier();
@java.lang.Override
public boolean isInRange(int number) {
return EventEndless.forNumber(number) != null;
}
};
private final int value;
private EventEndless(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:streamlayer.sports.EventEndless)
}