Module org.apache.arrow.gandiva
Package org.apache.arrow.gandiva.ipc
Interface GandivaTypes.DecimalNodeOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GandivaTypes.DecimalNode,GandivaTypes.DecimalNode.Builder
- Enclosing class:
- GandivaTypes
public static interface GandivaTypes.DecimalNodeOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionintoptional int32 precision = 2;intgetScale()optional int32 scale = 3;getValue()optional string value = 1;com.google.protobuf.ByteStringoptional string value = 1;booleanoptional int32 precision = 2;booleanhasScale()optional int32 scale = 3;booleanhasValue()optional string value = 1;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
-
hasValue
boolean hasValue()optional string value = 1;- Returns:
- Whether the value field is set.
-
getValue
String getValue()optional string value = 1;- Returns:
- The value.
-
getValueBytes
com.google.protobuf.ByteString getValueBytes()optional string value = 1;- Returns:
- The bytes for value.
-
hasPrecision
boolean hasPrecision()optional int32 precision = 2;- Returns:
- Whether the precision field is set.
-
getPrecision
int getPrecision()optional int32 precision = 2;- Returns:
- The precision.
-
hasScale
boolean hasScale()optional int32 scale = 3;- Returns:
- Whether the scale field is set.
-
getScale
int getScale()optional int32 scale = 3;- Returns:
- The scale.
-