Interface LiteralObjectOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder
,MessageOrBuilder
- All Known Implementing Classes:
LiteralObject
,LiteralObject.Builder
public interface LiteralObjectOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LiteralObject.Array
getArrayObject()
optional .com.apple.foundationdb.relational.continuation.LiteralObject.Array array_object = 2;
LiteralObject.ArrayOrBuilder
getArrayObjectOrBuilder()
optional .com.apple.foundationdb.relational.continuation.LiteralObject.Array array_object = 2;
ByteString
getRecordObject()
optional bytes record_object = 3;
com.apple.foundationdb.record.planprotos.PComparableObject
getScalarObject()
if none of these are set, we consider the object to be NULLcom.apple.foundationdb.record.planprotos.PComparableObjectOrBuilder
getScalarObjectOrBuilder()
if none of these are set, we consider the object to be NULLboolean
hasArrayObject()
optional .com.apple.foundationdb.relational.continuation.LiteralObject.Array array_object = 2;
boolean
hasRecordObject()
optional bytes record_object = 3;
boolean
hasScalarObject()
if none of these are set, we consider the object to be NULL-
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 Detail
-
hasScalarObject
boolean hasScalarObject()
if none of these are set, we consider the object to be NULL
optional .com.apple.foundationdb.record.planprotos.PComparableObject scalar_object = 1;
- Returns:
- Whether the scalarObject field is set.
-
getScalarObject
com.apple.foundationdb.record.planprotos.PComparableObject getScalarObject()
if none of these are set, we consider the object to be NULL
optional .com.apple.foundationdb.record.planprotos.PComparableObject scalar_object = 1;
- Returns:
- The scalarObject.
-
getScalarObjectOrBuilder
com.apple.foundationdb.record.planprotos.PComparableObjectOrBuilder getScalarObjectOrBuilder()
if none of these are set, we consider the object to be NULL
optional .com.apple.foundationdb.record.planprotos.PComparableObject scalar_object = 1;
-
hasArrayObject
boolean hasArrayObject()
optional .com.apple.foundationdb.relational.continuation.LiteralObject.Array array_object = 2;
- Returns:
- Whether the arrayObject field is set.
-
getArrayObject
LiteralObject.Array getArrayObject()
optional .com.apple.foundationdb.relational.continuation.LiteralObject.Array array_object = 2;
- Returns:
- The arrayObject.
-
getArrayObjectOrBuilder
LiteralObject.ArrayOrBuilder getArrayObjectOrBuilder()
optional .com.apple.foundationdb.relational.continuation.LiteralObject.Array array_object = 2;
-
hasRecordObject
boolean hasRecordObject()
optional bytes record_object = 3;
- Returns:
- Whether the recordObject field is set.
-
getRecordObject
ByteString getRecordObject()
optional bytes record_object = 3;
- Returns:
- The recordObject.
-
-