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

java.io.deephaven.proto.backplane.grpc.AjRajTablesRequestOrBuilder 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 AjRajTablesRequestOrBuilder extends
    // @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.AjRajTablesRequest)
    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();

  /**
   * repeated string exact_match_columns = 4;
   * @return A list containing the exactMatchColumns.
   */
  java.util.List
      getExactMatchColumnsList();
  /**
   * repeated string exact_match_columns = 4;
   * @return The count of exactMatchColumns.
   */
  int getExactMatchColumnsCount();
  /**
   * repeated string exact_match_columns = 4;
   * @param index The index of the element to return.
   * @return The exactMatchColumns at the given index.
   */
  java.lang.String getExactMatchColumns(int index);
  /**
   * repeated string exact_match_columns = 4;
   * @param index The index of the value to return.
   * @return The bytes of the exactMatchColumns at the given index.
   */
  com.google.protobuf.ByteString
      getExactMatchColumnsBytes(int index);

  /**
   * 
   * This is a comparison expression for the inexact as-of join match. In the case of an as-of join (aj), the comparison
   * operator can be either ">=" or ">"; for example, "Foo>=Bar" or "Foo>Bar". In the case of a reverse-as-of join (raj),
   * the comparison operator can be either "<=" or "<"; for example, "Foo<=Bar" or "Foo<Bar". In the case where the
   * column name exists in both tables, the single column name can be used and it will inherit the default comparison
   * operator: in the aj case, "Foo" is equivalent to "Foo>=Foo"; in the raj case, "Foo" is equivalent to "Foo<=Foo".
   * 
* * string as_of_column = 5; * @return The asOfColumn. */ java.lang.String getAsOfColumn(); /** *
   * This is a comparison expression for the inexact as-of join match. In the case of an as-of join (aj), the comparison
   * operator can be either ">=" or ">"; for example, "Foo>=Bar" or "Foo>Bar". In the case of a reverse-as-of join (raj),
   * the comparison operator can be either "<=" or "<"; for example, "Foo<=Bar" or "Foo<Bar". In the case where the
   * column name exists in both tables, the single column name can be used and it will inherit the default comparison
   * operator: in the aj case, "Foo" is equivalent to "Foo>=Foo"; in the raj case, "Foo" is equivalent to "Foo<=Foo".
   * 
* * string as_of_column = 5; * @return The bytes for asOfColumn. */ com.google.protobuf.ByteString getAsOfColumnBytes(); /** * repeated string columns_to_add = 6; * @return A list containing the columnsToAdd. */ java.util.List getColumnsToAddList(); /** * repeated string columns_to_add = 6; * @return The count of columnsToAdd. */ int getColumnsToAddCount(); /** * repeated string columns_to_add = 6; * @param index The index of the element to return. * @return The columnsToAdd at the given index. */ java.lang.String getColumnsToAdd(int index); /** * repeated string columns_to_add = 6; * @param index The index of the value to return. * @return The bytes of the columnsToAdd at the given index. */ com.google.protobuf.ByteString getColumnsToAddBytes(int index); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy