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

java.io.deephaven.proto.backplane.grpc.CaseSensitivity Maven / Gradle / Ivy

There is a newer version: 0.36.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: deephaven/proto/table.proto

// Protobuf Java Version: 3.25.3
package io.deephaven.proto.backplane.grpc;

/**
 * Protobuf enum {@code io.deephaven.proto.backplane.grpc.CaseSensitivity}
 */
public enum CaseSensitivity
    implements com.google.protobuf.ProtocolMessageEnum {
  /**
   * MATCH_CASE = 0;
   */
  MATCH_CASE(0),
  /**
   * IGNORE_CASE = 1;
   */
  IGNORE_CASE(1),
  UNRECOGNIZED(-1),
  ;

  /**
   * MATCH_CASE = 0;
   */
  public static final int MATCH_CASE_VALUE = 0;
  /**
   * IGNORE_CASE = 1;
   */
  public static final int IGNORE_CASE_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 CaseSensitivity 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 CaseSensitivity forNumber(int value) {
    switch (value) {
      case 0: return MATCH_CASE;
      case 1: return IGNORE_CASE;
      default: return null;
    }
  }

  public static com.google.protobuf.Internal.EnumLiteMap
      internalGetValueMap() {
    return internalValueMap;
  }
  private static final com.google.protobuf.Internal.EnumLiteMap<
      CaseSensitivity> internalValueMap =
        new com.google.protobuf.Internal.EnumLiteMap() {
          public CaseSensitivity findValueByNumber(int number) {
            return CaseSensitivity.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 io.deephaven.proto.backplane.grpc.Table.getDescriptor().getEnumTypes().get(3);
  }

  private static final CaseSensitivity[] VALUES = values();

  public static CaseSensitivity 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 CaseSensitivity(int value) {
    this.value = value;
  }

  // @@protoc_insertion_point(enum_scope:io.deephaven.proto.backplane.grpc.CaseSensitivity)
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy