Class UpdateByRequest.UpdateByOptions

java.lang.Object
com.google.protobuf.AbstractMessageLite
com.google.protobuf.AbstractMessage
com.google.protobuf.GeneratedMessageV3
io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions
All Implemented Interfaces:
com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, UpdateByRequest.UpdateByOptionsOrBuilder, Serializable
Enclosing class:
UpdateByRequest

public static final class UpdateByRequest.UpdateByOptions extends com.google.protobuf.GeneratedMessageV3 implements UpdateByRequest.UpdateByOptionsOrBuilder
Protobuf type io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions
See Also:
  • Field Details

    • USE_REDIRECTION_FIELD_NUMBER

      public static final int USE_REDIRECTION_FIELD_NUMBER
      See Also:
    • CHUNK_CAPACITY_FIELD_NUMBER

      public static final int CHUNK_CAPACITY_FIELD_NUMBER
      See Also:
    • MAX_STATIC_SPARSE_MEMORY_OVERHEAD_FIELD_NUMBER

      public static final int MAX_STATIC_SPARSE_MEMORY_OVERHEAD_FIELD_NUMBER
      See Also:
    • INITIAL_HASH_TABLE_SIZE_FIELD_NUMBER

      public static final int INITIAL_HASH_TABLE_SIZE_FIELD_NUMBER
      See Also:
    • MAXIMUM_LOAD_FACTOR_FIELD_NUMBER

      public static final int MAXIMUM_LOAD_FACTOR_FIELD_NUMBER
      See Also:
    • TARGET_LOAD_FACTOR_FIELD_NUMBER

      public static final int TARGET_LOAD_FACTOR_FIELD_NUMBER
      See Also:
    • MATH_CONTEXT_FIELD_NUMBER

      public static final int MATH_CONTEXT_FIELD_NUMBER
      See Also:
  • Method Details

    • newInstance

      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      Overrides:
      newInstance in class com.google.protobuf.GeneratedMessageV3
    • getDescriptor

      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • internalGetFieldAccessorTable

      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
    • hasUseRedirection

      public boolean hasUseRedirection()
       If redirections should be used for output sources instead of sparse array sources.
       If unset, defaults to server-provided defaults.
       
      optional bool use_redirection = 1;
      Specified by:
      hasUseRedirection in interface UpdateByRequest.UpdateByOptionsOrBuilder
      Returns:
      Whether the useRedirection field is set.
    • getUseRedirection

      public boolean getUseRedirection()
       If redirections should be used for output sources instead of sparse array sources.
       If unset, defaults to server-provided defaults.
       
      optional bool use_redirection = 1;
      Specified by:
      getUseRedirection in interface UpdateByRequest.UpdateByOptionsOrBuilder
      Returns:
      The useRedirection.
    • hasChunkCapacity

      public boolean hasChunkCapacity()
       The maximum chunk capacity.
       If unset, defaults to server-provided defaults.
       
      optional int32 chunk_capacity = 2;
      Specified by:
      hasChunkCapacity in interface UpdateByRequest.UpdateByOptionsOrBuilder
      Returns:
      Whether the chunkCapacity field is set.
    • getChunkCapacity

      public int getChunkCapacity()
       The maximum chunk capacity.
       If unset, defaults to server-provided defaults.
       
      optional int32 chunk_capacity = 2;
      Specified by:
      getChunkCapacity in interface UpdateByRequest.UpdateByOptionsOrBuilder
      Returns:
      The chunkCapacity.
    • hasMaxStaticSparseMemoryOverhead

      public boolean hasMaxStaticSparseMemoryOverhead()
       The maximum fractional memory overhead allowable for sparse redirections as a fraction (e.g. 1.1 is 10%
       overhead). Values less than zero disable overhead checking, and result in always using the sparse structure. A
       value of zero results in never using the sparse structure.
       If unset, defaults to server-provided defaults.
       
      optional double max_static_sparse_memory_overhead = 3;
      Specified by:
      hasMaxStaticSparseMemoryOverhead in interface UpdateByRequest.UpdateByOptionsOrBuilder
      Returns:
      Whether the maxStaticSparseMemoryOverhead field is set.
    • getMaxStaticSparseMemoryOverhead

      public double getMaxStaticSparseMemoryOverhead()
       The maximum fractional memory overhead allowable for sparse redirections as a fraction (e.g. 1.1 is 10%
       overhead). Values less than zero disable overhead checking, and result in always using the sparse structure. A
       value of zero results in never using the sparse structure.
       If unset, defaults to server-provided defaults.
       
      optional double max_static_sparse_memory_overhead = 3;
      Specified by:
      getMaxStaticSparseMemoryOverhead in interface UpdateByRequest.UpdateByOptionsOrBuilder
      Returns:
      The maxStaticSparseMemoryOverhead.
    • hasInitialHashTableSize

      public boolean hasInitialHashTableSize()
       The initial hash table size.
       If unset, defaults to server-provided defaults.
       
      optional int32 initial_hash_table_size = 4;
      Specified by:
      hasInitialHashTableSize in interface UpdateByRequest.UpdateByOptionsOrBuilder
      Returns:
      Whether the initialHashTableSize field is set.
    • getInitialHashTableSize

      public int getInitialHashTableSize()
       The initial hash table size.
       If unset, defaults to server-provided defaults.
       
      optional int32 initial_hash_table_size = 4;
      Specified by:
      getInitialHashTableSize in interface UpdateByRequest.UpdateByOptionsOrBuilder
      Returns:
      The initialHashTableSize.
    • hasMaximumLoadFactor

      public boolean hasMaximumLoadFactor()
       The maximum load factor for the hash table.
       If unset, defaults to server-provided defaults.
       
      optional double maximum_load_factor = 5;
      Specified by:
      hasMaximumLoadFactor in interface UpdateByRequest.UpdateByOptionsOrBuilder
      Returns:
      Whether the maximumLoadFactor field is set.
    • getMaximumLoadFactor

      public double getMaximumLoadFactor()
       The maximum load factor for the hash table.
       If unset, defaults to server-provided defaults.
       
      optional double maximum_load_factor = 5;
      Specified by:
      getMaximumLoadFactor in interface UpdateByRequest.UpdateByOptionsOrBuilder
      Returns:
      The maximumLoadFactor.
    • hasTargetLoadFactor

      public boolean hasTargetLoadFactor()
       The target load factor for the hash table.
       If unset, defaults to server-provided defaults.
       
      optional double target_load_factor = 6;
      Specified by:
      hasTargetLoadFactor in interface UpdateByRequest.UpdateByOptionsOrBuilder
      Returns:
      Whether the targetLoadFactor field is set.
    • getTargetLoadFactor

      public double getTargetLoadFactor()
       The target load factor for the hash table.
       If unset, defaults to server-provided defaults.
       
      optional double target_load_factor = 6;
      Specified by:
      getTargetLoadFactor in interface UpdateByRequest.UpdateByOptionsOrBuilder
      Returns:
      The targetLoadFactor.
    • hasMathContext

      public boolean hasMathContext()
       The math context.
       
      .io.deephaven.proto.backplane.grpc.MathContext math_context = 7;
      Specified by:
      hasMathContext in interface UpdateByRequest.UpdateByOptionsOrBuilder
      Returns:
      Whether the mathContext field is set.
    • getMathContext

      public MathContext getMathContext()
       The math context.
       
      .io.deephaven.proto.backplane.grpc.MathContext math_context = 7;
      Specified by:
      getMathContext in interface UpdateByRequest.UpdateByOptionsOrBuilder
      Returns:
      The mathContext.
    • getMathContextOrBuilder

      public MathContextOrBuilder getMathContextOrBuilder()
       The math context.
       
      .io.deephaven.proto.backplane.grpc.MathContext math_context = 7;
      Specified by:
      getMathContextOrBuilder in interface UpdateByRequest.UpdateByOptionsOrBuilder
    • isInitialized

      public final boolean isInitialized()
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
    • writeTo

      public void writeTo(com.google.protobuf.CodedOutputStream output) throws IOException
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      Throws:
      IOException
    • getSerializedSize

      public int getSerializedSize()
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
    • equals

      public boolean equals(Object obj)
      Specified by:
      equals in interface com.google.protobuf.Message
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
    • hashCode

      public int hashCode()
      Specified by:
      hashCode in interface com.google.protobuf.Message
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
    • parseFrom

      public static UpdateByRequest.UpdateByOptions parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static UpdateByRequest.UpdateByOptions parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static UpdateByRequest.UpdateByOptions parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static UpdateByRequest.UpdateByOptions parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static UpdateByRequest.UpdateByOptions parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static UpdateByRequest.UpdateByOptions parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static UpdateByRequest.UpdateByOptions parseFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static UpdateByRequest.UpdateByOptions parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static UpdateByRequest.UpdateByOptions parseDelimitedFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static UpdateByRequest.UpdateByOptions parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseFrom

      public static UpdateByRequest.UpdateByOptions parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static UpdateByRequest.UpdateByOptions parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • newBuilderForType

      public UpdateByRequest.UpdateByOptions.Builder newBuilderForType()
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
    • newBuilder

      public static UpdateByRequest.UpdateByOptions.Builder newBuilder()
    • newBuilder

    • toBuilder

      Specified by:
      toBuilder in interface com.google.protobuf.Message
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
    • newBuilderForType

      protected UpdateByRequest.UpdateByOptions.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstance

      public static UpdateByRequest.UpdateByOptions getDefaultInstance()
    • parser

      public static com.google.protobuf.Parser<UpdateByRequest.UpdateByOptions> parser()
    • getParserForType

      public com.google.protobuf.Parser<UpdateByRequest.UpdateByOptions> getParserForType()
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstanceForType

      public UpdateByRequest.UpdateByOptions getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder