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

java.io.deephaven.proto.backplane.grpc.WhereInRequestOrBuilder 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;

public interface WhereInRequestOrBuilder extends
    // @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.WhereInRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   * .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
   * @return Whether the resultId field is set.
   */
  boolean hasResultId();
  /**
   * .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
   * @return The resultId.
   */
  io.deephaven.proto.backplane.grpc.Ticket getResultId();
  /**
   * .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
   */
  io.deephaven.proto.backplane.grpc.TicketOrBuilder getResultIdOrBuilder();

  /**
   * .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
   * @return Whether the leftId field is set.
   */
  boolean hasLeftId();
  /**
   * .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
   * @return The leftId.
   */
  io.deephaven.proto.backplane.grpc.TableReference getLeftId();
  /**
   * .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
   */
  io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder getLeftIdOrBuilder();

  /**
   * .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
   * @return Whether the rightId field is set.
   */
  boolean hasRightId();
  /**
   * .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
   * @return The rightId.
   */
  io.deephaven.proto.backplane.grpc.TableReference getRightId();
  /**
   * .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
   */
  io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder getRightIdOrBuilder();

  /**
   * 
   * When true, becomes a "where not in" request
   * 
* * bool inverted = 4; * @return The inverted. */ boolean getInverted(); /** * repeated string columns_to_match = 5; * @return A list containing the columnsToMatch. */ java.util.List getColumnsToMatchList(); /** * repeated string columns_to_match = 5; * @return The count of columnsToMatch. */ int getColumnsToMatchCount(); /** * repeated string columns_to_match = 5; * @param index The index of the element to return. * @return The columnsToMatch at the given index. */ java.lang.String getColumnsToMatch(int index); /** * repeated string columns_to_match = 5; * @param index The index of the value to return. * @return The bytes of the columnsToMatch at the given index. */ com.google.protobuf.ByteString getColumnsToMatchBytes(int index); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy