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

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

There is a newer version: 5.120.2
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.NotificationEnabled}
 */
public enum NotificationEnabled
    implements com.google.protobuf.Internal.EnumLite {
  /**
   * NOTIFICATION_ENABLED_UNSET = 0;
   */
  NOTIFICATION_ENABLED_UNSET(0),
  /**
   * NOTIFICATION_ENABLED = 1;
   */
  NOTIFICATION_ENABLED(1),
  /**
   * NOTIFICATION_DISABLED = 2;
   */
  NOTIFICATION_DISABLED(2),
  UNRECOGNIZED(-1),
  ;

  /**
   * NOTIFICATION_ENABLED_UNSET = 0;
   */
  public static final int NOTIFICATION_ENABLED_UNSET_VALUE = 0;
  /**
   * NOTIFICATION_ENABLED = 1;
   */
  public static final int NOTIFICATION_ENABLED_VALUE = 1;
  /**
   * NOTIFICATION_DISABLED = 2;
   */
  public static final int NOTIFICATION_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 NotificationEnabled valueOf(int value) {
    return forNumber(value);
  }

  public static NotificationEnabled forNumber(int value) {
    switch (value) {
      case 0: return NOTIFICATION_ENABLED_UNSET;
      case 1: return NOTIFICATION_ENABLED;
      case 2: return NOTIFICATION_DISABLED;
      default: return null;
    }
  }

  public static com.google.protobuf.Internal.EnumLiteMap
      internalGetValueMap() {
    return internalValueMap;
  }
  private static final com.google.protobuf.Internal.EnumLiteMap<
      NotificationEnabled> internalValueMap =
        new com.google.protobuf.Internal.EnumLiteMap() {
          @java.lang.Override
          public NotificationEnabled findValueByNumber(int number) {
            return NotificationEnabled.forNumber(number);
          }
        };

  public static com.google.protobuf.Internal.EnumVerifier 
      internalGetVerifier() {
    return NotificationEnabledVerifier.INSTANCE;
  }

  private static final class NotificationEnabledVerifier implements 
       com.google.protobuf.Internal.EnumVerifier { 
          static final com.google.protobuf.Internal.EnumVerifier           INSTANCE = new NotificationEnabledVerifier();
          @java.lang.Override
          public boolean isInRange(int number) {
            return NotificationEnabled.forNumber(number) != null;
          }
        };

  private final int value;

  private NotificationEnabled(int value) {
    this.value = value;
  }

  // @@protoc_insertion_point(enum_scope:streamlayer.interactive.NotificationEnabled)
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy