java.io.deephaven.proto.backplane.grpc.UpdateByNullBehavior 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
// 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.UpdateByNullBehavior}
*/
public enum UpdateByNullBehavior
implements com.google.protobuf.ProtocolMessageEnum {
/**
*
* When not specified will use the server default.
*
*
* NULL_BEHAVIOR_NOT_SPECIFIED = 0;
*/
NULL_BEHAVIOR_NOT_SPECIFIED(0),
/**
*
* In the case of Current - null, the null dominates so Column[i] - null = null
*
*
* NULL_DOMINATES = 1;
*/
NULL_DOMINATES(1),
/**
*
* In the case of Current - null, the current value dominates so Column[i] - null = Column[i]
*
*
* VALUE_DOMINATES = 2;
*/
VALUE_DOMINATES(2),
/**
*
* In the case of Current - null, return zero so Column[i] - null = 0
*
*
* ZERO_DOMINATES = 3;
*/
ZERO_DOMINATES(3),
UNRECOGNIZED(-1),
;
/**
*
* When not specified will use the server default.
*
*
* NULL_BEHAVIOR_NOT_SPECIFIED = 0;
*/
public static final int NULL_BEHAVIOR_NOT_SPECIFIED_VALUE = 0;
/**
*
* In the case of Current - null, the null dominates so Column[i] - null = null
*
*
* NULL_DOMINATES = 1;
*/
public static final int NULL_DOMINATES_VALUE = 1;
/**
*
* In the case of Current - null, the current value dominates so Column[i] - null = Column[i]
*
*
* VALUE_DOMINATES = 2;
*/
public static final int VALUE_DOMINATES_VALUE = 2;
/**
*
* In the case of Current - null, return zero so Column[i] - null = 0
*
*
* ZERO_DOMINATES = 3;
*/
public static final int ZERO_DOMINATES_VALUE = 3;
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 UpdateByNullBehavior 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 UpdateByNullBehavior forNumber(int value) {
switch (value) {
case 0: return NULL_BEHAVIOR_NOT_SPECIFIED;
case 1: return NULL_DOMINATES;
case 2: return VALUE_DOMINATES;
case 3: return ZERO_DOMINATES;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
UpdateByNullBehavior> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public UpdateByNullBehavior findValueByNumber(int number) {
return UpdateByNullBehavior.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(1);
}
private static final UpdateByNullBehavior[] VALUES = values();
public static UpdateByNullBehavior 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 UpdateByNullBehavior(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:io.deephaven.proto.backplane.grpc.UpdateByNullBehavior)
}