Package com.google.datastore.v1
Interface PropertyOrderOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PropertyOrder
,PropertyOrder.Builder
public interface PropertyOrderOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyOrder.Direction
getDirection()
The direction to order by.int
getDirectionValue()
The direction to order by.PropertyReference
getProperty()
The property to order by.PropertyReferenceOrBuilder
getPropertyOrBuilder()
The property to order by.boolean
hasProperty()
The property to order by.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasProperty
boolean hasProperty()
The property to order by.
.google.datastore.v1.PropertyReference property = 1;
- Returns:
- Whether the property field is set.
-
getProperty
PropertyReference getProperty()
The property to order by.
.google.datastore.v1.PropertyReference property = 1;
- Returns:
- The property.
-
getPropertyOrBuilder
PropertyReferenceOrBuilder getPropertyOrBuilder()
The property to order by.
.google.datastore.v1.PropertyReference property = 1;
-
getDirectionValue
int getDirectionValue()
The direction to order by. Defaults to `ASCENDING`.
.google.datastore.v1.PropertyOrder.Direction direction = 2;
- Returns:
- The enum numeric value on the wire for direction.
-
getDirection
PropertyOrder.Direction getDirection()
The direction to order by. Defaults to `ASCENDING`.
.google.datastore.v1.PropertyOrder.Direction direction = 2;
- Returns:
- The direction.
-
-