Package com.ocient.jdbc.proto
Interface PlanProtocol.MakeVectorOperatorOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PlanProtocol.MakeVectorOperator,PlanProtocol.MakeVectorOperator.Builder
- Enclosing class:
- PlanProtocol
public static interface PlanProtocol.MakeVectorOperatorOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetOutName()The name of the new vector columncom.google.protobuf.ByteStringgetOutNameBytes()The name of the new vector columnStringgetVectorCols(int index)The input columns that make up the vectorcom.google.protobuf.ByteStringgetVectorColsBytes(int index)The input columns that make up the vectorintgetVectorColsCount()The input columns that make up the vectorList<String>getVectorColsList()The input columns that make up the vector-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVectorColsList
List<String> getVectorColsList()
The input columns that make up the vector
repeated string vectorCols = 1;- Returns:
- A list containing the vectorCols.
-
getVectorColsCount
int getVectorColsCount()
The input columns that make up the vector
repeated string vectorCols = 1;- Returns:
- The count of vectorCols.
-
getVectorCols
String getVectorCols(int index)
The input columns that make up the vector
repeated string vectorCols = 1;- Parameters:
index- The index of the element to return.- Returns:
- The vectorCols at the given index.
-
getVectorColsBytes
com.google.protobuf.ByteString getVectorColsBytes(int index)
The input columns that make up the vector
repeated string vectorCols = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the vectorCols at the given index.
-
getOutName
String getOutName()
The name of the new vector column
string outName = 2;- Returns:
- The outName.
-
getOutNameBytes
com.google.protobuf.ByteString getOutNameBytes()
The name of the new vector column
string outName = 2;- Returns:
- The bytes for outName.
-
-