main.java.com.streamlayer.interactive.common.QuestionSkipReason 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/interactive/interactive.common.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.interactive.common;
/**
* Protobuf enum {@code streamlayer.interactive.QuestionSkipReason}
*/
public enum QuestionSkipReason
implements com.google.protobuf.Internal.EnumLite {
/**
* QUESTION_SKIP_REASON_UNSET = 0;
*/
QUESTION_SKIP_REASON_UNSET(0),
/**
* QUESTION_SKIP_REASON_OVERDUE = 1;
*/
QUESTION_SKIP_REASON_OVERDUE(1),
UNRECOGNIZED(-1),
;
/**
* QUESTION_SKIP_REASON_UNSET = 0;
*/
public static final int QUESTION_SKIP_REASON_UNSET_VALUE = 0;
/**
* QUESTION_SKIP_REASON_OVERDUE = 1;
*/
public static final int QUESTION_SKIP_REASON_OVERDUE_VALUE = 1;
@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 QuestionSkipReason valueOf(int value) {
return forNumber(value);
}
public static QuestionSkipReason forNumber(int value) {
switch (value) {
case 0: return QUESTION_SKIP_REASON_UNSET;
case 1: return QUESTION_SKIP_REASON_OVERDUE;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
QuestionSkipReason> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
@java.lang.Override
public QuestionSkipReason findValueByNumber(int number) {
return QuestionSkipReason.forNumber(number);
}
};
public static com.google.protobuf.Internal.EnumVerifier
internalGetVerifier() {
return QuestionSkipReasonVerifier.INSTANCE;
}
private static final class QuestionSkipReasonVerifier implements
com.google.protobuf.Internal.EnumVerifier {
static final com.google.protobuf.Internal.EnumVerifier INSTANCE = new QuestionSkipReasonVerifier();
@java.lang.Override
public boolean isInRange(int number) {
return QuestionSkipReason.forNumber(number) != null;
}
};
private final int value;
private QuestionSkipReason(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:streamlayer.interactive.QuestionSkipReason)
}