All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.java.com.streamlayer.interactive.common.QuestionAutoPostStart Maven / Gradle / Ivy

There is a newer version: 5.133.1
Show newest version
// 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.QuestionAutoPostStart}
 */
public enum QuestionAutoPostStart
    implements com.google.protobuf.Internal.EnumLite {
  /**
   * QUESTION_AUTO_POST_START_UNSET = 0;
   */
  QUESTION_AUTO_POST_START_UNSET(0),
  /**
   * 
   * schedule activation at a specific time
   * 
* * QUESTION_AUTO_POST_START_SCHEDULE = 1; */ QUESTION_AUTO_POST_START_SCHEDULE(1), /** *
   * immediate activation after an interval
   * 
* * QUESTION_AUTO_POST_START_NOW = 2; */ QUESTION_AUTO_POST_START_NOW(2), UNRECOGNIZED(-1), ; /** * QUESTION_AUTO_POST_START_UNSET = 0; */ public static final int QUESTION_AUTO_POST_START_UNSET_VALUE = 0; /** *
   * schedule activation at a specific time
   * 
* * QUESTION_AUTO_POST_START_SCHEDULE = 1; */ public static final int QUESTION_AUTO_POST_START_SCHEDULE_VALUE = 1; /** *
   * immediate activation after an interval
   * 
* * QUESTION_AUTO_POST_START_NOW = 2; */ public static final int QUESTION_AUTO_POST_START_NOW_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 QuestionAutoPostStart valueOf(int value) { return forNumber(value); } public static QuestionAutoPostStart forNumber(int value) { switch (value) { case 0: return QUESTION_AUTO_POST_START_UNSET; case 1: return QUESTION_AUTO_POST_START_SCHEDULE; case 2: return QUESTION_AUTO_POST_START_NOW; default: return null; } } public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { return internalValueMap; } private static final com.google.protobuf.Internal.EnumLiteMap< QuestionAutoPostStart> internalValueMap = new com.google.protobuf.Internal.EnumLiteMap() { @java.lang.Override public QuestionAutoPostStart findValueByNumber(int number) { return QuestionAutoPostStart.forNumber(number); } }; public static com.google.protobuf.Internal.EnumVerifier internalGetVerifier() { return QuestionAutoPostStartVerifier.INSTANCE; } private static final class QuestionAutoPostStartVerifier implements com.google.protobuf.Internal.EnumVerifier { static final com.google.protobuf.Internal.EnumVerifier INSTANCE = new QuestionAutoPostStartVerifier(); @java.lang.Override public boolean isInRange(int number) { return QuestionAutoPostStart.forNumber(number) != null; } }; private final int value; private QuestionAutoPostStart(int value) { this.value = value; } // @@protoc_insertion_point(enum_scope:streamlayer.interactive.QuestionAutoPostStart) }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy