java.io.deephaven.proto.backplane.grpc.BadDataBehavior Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-proto-backplane-grpc Show documentation
Show all versions of deephaven-proto-backplane-grpc Show documentation
The Deephaven proto-backplane-grpc
The 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;
/**
*
* Directives for how to handle {@code null} and {@code NaN} values
*
*
* Protobuf enum {@code io.deephaven.proto.backplane.grpc.BadDataBehavior}
*/
public enum BadDataBehavior
implements com.google.protobuf.ProtocolMessageEnum {
/**
*
* When not specified will use the server default.
*
*
* BAD_DATA_BEHAVIOR_NOT_SPECIFIED = 0;
*/
BAD_DATA_BEHAVIOR_NOT_SPECIFIED(0),
/**
*
* Throw an exception and abort processing when bad data is encountered.
*
*
* THROW = 1;
*/
THROW(1),
/**
*
* Reset the state for the bucket to {@code null} when invalid data is encountered.
*
*
* RESET = 2;
*/
RESET(2),
/**
*
* Skip and do not process the invalid data without changing state.
*
*
* SKIP = 3;
*/
SKIP(3),
/**
*
* Allow the bad data to poison the result. This is only valid for use with NaN.
*
*
* POISON = 4;
*/
POISON(4),
UNRECOGNIZED(-1),
;
/**
*
* When not specified will use the server default.
*
*
* BAD_DATA_BEHAVIOR_NOT_SPECIFIED = 0;
*/
public static final int BAD_DATA_BEHAVIOR_NOT_SPECIFIED_VALUE = 0;
/**
*
* Throw an exception and abort processing when bad data is encountered.
*
*
* THROW = 1;
*/
public static final int THROW_VALUE = 1;
/**
*
* Reset the state for the bucket to {@code null} when invalid data is encountered.
*
*
* RESET = 2;
*/
public static final int RESET_VALUE = 2;
/**
*
* Skip and do not process the invalid data without changing state.
*
*
* SKIP = 3;
*/
public static final int SKIP_VALUE = 3;
/**
*
* Allow the bad data to poison the result. This is only valid for use with NaN.
*
*
* POISON = 4;
*/
public static final int POISON_VALUE = 4;
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 BadDataBehavior 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 BadDataBehavior forNumber(int value) {
switch (value) {
case 0: return BAD_DATA_BEHAVIOR_NOT_SPECIFIED;
case 1: return THROW;
case 2: return RESET;
case 3: return SKIP;
case 4: return POISON;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
BadDataBehavior> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public BadDataBehavior findValueByNumber(int number) {
return BadDataBehavior.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(0);
}
private static final BadDataBehavior[] VALUES = values();
public static BadDataBehavior 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 BadDataBehavior(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:io.deephaven.proto.backplane.grpc.BadDataBehavior)
}