Package org.yamcs.protobuf
Interface Table.ReadRowsRequestOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Table.ReadRowsRequest
,Table.ReadRowsRequest.Builder
- Enclosing class:
- Table
public static interface Table.ReadRowsRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetCols
(int index) The columns to be included in the result.com.google.protobuf.ByteString
getColsBytes
(int index) The columns to be included in the result.int
The columns to be included in the result.The columns to be included in the result.Yamcs instance name.com.google.protobuf.ByteString
Yamcs instance name.getQuery()
Limit the results by specifying a SQL WHERE clause.com.google.protobuf.ByteString
Limit the results by specifying a SQL WHERE clause.getTable()
Table name.com.google.protobuf.ByteString
Table name.boolean
Yamcs instance name.boolean
hasQuery()
Limit the results by specifying a SQL WHERE clause.boolean
hasTable()
Table name.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasInstance
boolean hasInstance()Yamcs instance name.
optional string instance = 1;
- Returns:
- Whether the instance field is set.
-
getInstance
String getInstance()Yamcs instance name.
optional string instance = 1;
- Returns:
- The instance.
-
getInstanceBytes
com.google.protobuf.ByteString getInstanceBytes()Yamcs instance name.
optional string instance = 1;
- Returns:
- The bytes for instance.
-
hasTable
boolean hasTable()Table name.
optional string table = 2;
- Returns:
- Whether the table field is set.
-
getTable
String getTable()Table name.
optional string table = 2;
- Returns:
- The table.
-
getTableBytes
com.google.protobuf.ByteString getTableBytes()Table name.
optional string table = 2;
- Returns:
- The bytes for table.
-
getColsList
The columns to be included in the result. If unspecified, all table and/or additional tuple columns will be included.
repeated string cols = 3;
- Returns:
- A list containing the cols.
-
getColsCount
int getColsCount()The columns to be included in the result. If unspecified, all table and/or additional tuple columns will be included.
repeated string cols = 3;
- Returns:
- The count of cols.
-
getCols
The columns to be included in the result. If unspecified, all table and/or additional tuple columns will be included.
repeated string cols = 3;
- Parameters:
index
- The index of the element to return.- Returns:
- The cols at the given index.
-
getColsBytes
com.google.protobuf.ByteString getColsBytes(int index) The columns to be included in the result. If unspecified, all table and/or additional tuple columns will be included.
repeated string cols = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the cols at the given index.
-
hasQuery
boolean hasQuery()Limit the results by specifying a SQL WHERE clause. Examples: - pname = '/YSS/SIMULATOR/FlightData' - gentime > '2023-01-01T00:00:00.000Z' - pname = '/YSS/SIMULATOR/FlightData' and gentime > '2023-01-01T00:00:00.000Z'
optional string query = 4;
- Returns:
- Whether the query field is set.
-
getQuery
String getQuery()Limit the results by specifying a SQL WHERE clause. Examples: - pname = '/YSS/SIMULATOR/FlightData' - gentime > '2023-01-01T00:00:00.000Z' - pname = '/YSS/SIMULATOR/FlightData' and gentime > '2023-01-01T00:00:00.000Z'
optional string query = 4;
- Returns:
- The query.
-
getQueryBytes
com.google.protobuf.ByteString getQueryBytes()Limit the results by specifying a SQL WHERE clause. Examples: - pname = '/YSS/SIMULATOR/FlightData' - gentime > '2023-01-01T00:00:00.000Z' - pname = '/YSS/SIMULATOR/FlightData' and gentime > '2023-01-01T00:00:00.000Z'
optional string query = 4;
- Returns:
- The bytes for query.
-