Interface SearchDataItemsRequest.OrderByAnnotationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchDataItemsRequest.OrderByAnnotation
,SearchDataItemsRequest.OrderByAnnotation.Builder
- Enclosing class:
- SearchDataItemsRequest
public static interface SearchDataItemsRequest.OrderByAnnotationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getOrderBy()
A comma-separated list of annotation fields to order by, sorted in ascending order.com.google.protobuf.ByteString
getOrderByBytes()
A comma-separated list of annotation fields to order by, sorted in ascending order.String
getSavedQuery()
Required.com.google.protobuf.ByteString
getSavedQueryBytes()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSavedQuery
String getSavedQuery()
Required. Saved query of the Annotation. Only Annotations belong to this saved query will be considered for ordering.
string saved_query = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The savedQuery.
-
getSavedQueryBytes
com.google.protobuf.ByteString getSavedQueryBytes()
Required. Saved query of the Annotation. Only Annotations belong to this saved query will be considered for ordering.
string saved_query = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for savedQuery.
-
getOrderBy
String getOrderBy()
A comma-separated list of annotation fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Must also specify saved_query.
string order_by = 2;
- Returns:
- The orderBy.
-
getOrderByBytes
com.google.protobuf.ByteString getOrderByBytes()
A comma-separated list of annotation fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Must also specify saved_query.
string order_by = 2;
- Returns:
- The bytes for orderBy.
-
-