Package com.google.spanner.executor.v1
Interface QueryAction.ParameterOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
QueryAction.Parameter,QueryAction.Parameter.Builder
- Enclosing class:
- QueryAction
public static interface QueryAction.ParameterOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetName()Name of the parameter (with no leading @).com.google.protobuf.ByteStringName of the parameter (with no leading @).getType()Type of the parameter.Type of the parameter.getValue()Value of the parameter.Value of the parameter.booleanhasType()Type of the parameter.booleanhasValue()Value of the parameter.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getName
String getName()Name of the parameter (with no leading @).
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()Name of the parameter (with no leading @).
string name = 1;- Returns:
- The bytes for name.
-
hasType
boolean hasType()Type of the parameter.
.google.spanner.v1.Type type = 2;- Returns:
- Whether the type field is set.
-
getType
Type getType()Type of the parameter.
.google.spanner.v1.Type type = 2;- Returns:
- The type.
-
getTypeOrBuilder
TypeOrBuilder getTypeOrBuilder()Type of the parameter.
.google.spanner.v1.Type type = 2; -
hasValue
boolean hasValue()Value of the parameter.
.google.spanner.executor.v1.Value value = 3;- Returns:
- Whether the value field is set.
-
getValue
Value getValue()Value of the parameter.
.google.spanner.executor.v1.Value value = 3;- Returns:
- The value.
-
getValueOrBuilder
ValueOrBuilder getValueOrBuilder()Value of the parameter.
.google.spanner.executor.v1.Value value = 3;
-