Package org.apache.calcite.avatica.proto
Interface Common.TypedValueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Common.TypedValue,Common.TypedValue.Builder
- Enclosing class:
- Common
public static interface Common.TypedValueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Common.TypedValuegetArrayValue(int index)The ArrayintgetArrayValueCount()The Arrayjava.util.List<Common.TypedValue>getArrayValueList()The ArrayCommon.TypedValueOrBuildergetArrayValueOrBuilder(int index)The Arrayjava.util.List<? extends Common.TypedValueOrBuilder>getArrayValueOrBuilderList()The ArraybooleangetBoolValue()booleancom.google.protobuf.ByteStringgetBytesValue()includes numeric types and date/time types.Common.RepgetComponentType()If an Array, the representation for the array valuesintgetComponentTypeValue()If an Array, the representation for the array valuesdoublegetDoubleValue()big numbersbooleangetImplicitlyNull()Differentiate between explicitly null (user-set) and implicitly nullbooleangetNull()a null objectlonggetNumberValue()var-len encoding lets us shove anything from byte to longjava.lang.StringgetStringValue()char/varcharcom.google.protobuf.ByteStringgetStringValueBytes()char/varcharCommon.RepgetType()The actual type that was serialized in the general attribute belowintgetTypeValue()The actual type that was serialized in the general attribute below-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
The actual type that was serialized in the general attribute below
.Rep type = 1;
-
getType
Common.Rep getType()
The actual type that was serialized in the general attribute below
.Rep type = 1;
-
getBoolValue
boolean getBoolValue()
boolean
bool bool_value = 2;
-
getStringValue
java.lang.String getStringValue()
char/varchar
string string_value = 3;
-
getStringValueBytes
com.google.protobuf.ByteString getStringValueBytes()
char/varchar
string string_value = 3;
-
getNumberValue
long getNumberValue()
var-len encoding lets us shove anything from byte to long
sint64 number_value = 4;
-
getBytesValue
com.google.protobuf.ByteString getBytesValue()
includes numeric types and date/time types.
bytes bytes_value = 5;
-
getDoubleValue
double getDoubleValue()
big numbers
double double_value = 6;
-
getNull
boolean getNull()
a null object
bool null = 7;
-
getArrayValueList
java.util.List<Common.TypedValue> getArrayValueList()
The Array
repeated .TypedValue array_value = 8;
-
getArrayValue
Common.TypedValue getArrayValue(int index)
The Array
repeated .TypedValue array_value = 8;
-
getArrayValueCount
int getArrayValueCount()
The Array
repeated .TypedValue array_value = 8;
-
getArrayValueOrBuilderList
java.util.List<? extends Common.TypedValueOrBuilder> getArrayValueOrBuilderList()
The Array
repeated .TypedValue array_value = 8;
-
getArrayValueOrBuilder
Common.TypedValueOrBuilder getArrayValueOrBuilder(int index)
The Array
repeated .TypedValue array_value = 8;
-
getComponentTypeValue
int getComponentTypeValue()
If an Array, the representation for the array values
.Rep component_type = 9;
-
getComponentType
Common.Rep getComponentType()
If an Array, the representation for the array values
.Rep component_type = 9;
-
getImplicitlyNull
boolean getImplicitlyNull()
Differentiate between explicitly null (user-set) and implicitly null
bool implicitly_null = 10;
-
-