com.google.photos.library.v1.proto.SearchMediaItemsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-photos-library-client Show documentation
Show all versions of google-photos-library-client Show documentation
Google Photos Library API Client Library for Java
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/photos/library/v1/photos_library.proto
package com.google.photos.library.v1.proto;
/**
*
*
*
* Request to search for media items in a user's library.
* If the album id is specified, this call will return the list of media items
* in the album. If neither filters nor album id are
* specified, this call will return all media items in a user's Google Photos
* library.
* If filters are specified, this call will return all media items in
* the user's library that fulfill the filter criteria.
* Filters and album id must not both be set, as this will result in an
* invalid request.
*
*
* Protobuf type {@code google.photos.library.v1.SearchMediaItemsRequest}
*/
public final class SearchMediaItemsRequest extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.photos.library.v1.SearchMediaItemsRequest)
SearchMediaItemsRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use SearchMediaItemsRequest.newBuilder() to construct.
private SearchMediaItemsRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private SearchMediaItemsRequest() {
albumId_ = "";
pageToken_ = "";
orderBy_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new SearchMediaItemsRequest();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.photos.library.v1.proto.LibraryServiceProto
.internal_static_google_photos_library_v1_SearchMediaItemsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.photos.library.v1.proto.LibraryServiceProto
.internal_static_google_photos_library_v1_SearchMediaItemsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.photos.library.v1.proto.SearchMediaItemsRequest.class,
com.google.photos.library.v1.proto.SearchMediaItemsRequest.Builder.class);
}
public static final int ALBUM_ID_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object albumId_ = "";
/**
*
*
*
* Identifier of an album. If populated, lists all media items in
* specified album. Can't set in conjunction with any filters.
*
*
* string album_id = 1;
*
* @return The albumId.
*/
@java.lang.Override
public java.lang.String getAlbumId() {
java.lang.Object ref = albumId_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
albumId_ = s;
return s;
}
}
/**
*
*
*
* Identifier of an album. If populated, lists all media items in
* specified album. Can't set in conjunction with any filters.
*
*
* string album_id = 1;
*
* @return The bytes for albumId.
*/
@java.lang.Override
public com.google.protobuf.ByteString getAlbumIdBytes() {
java.lang.Object ref = albumId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
albumId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PAGE_SIZE_FIELD_NUMBER = 2;
private int pageSize_ = 0;
/**
*
*
*
* Maximum number of media items to return in the response. Fewer media items
* might be returned than the specified number. The default `pageSize` is 25,
* the maximum is 100.
*
*
* int32 page_size = 2;
*
* @return The pageSize.
*/
@java.lang.Override
public int getPageSize() {
return pageSize_;
}
public static final int PAGE_TOKEN_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private volatile java.lang.Object pageToken_ = "";
/**
*
*
*
* A continuation token to get the next page of the results. Adding this to
* the request returns the rows after the `pageToken`. The `pageToken` should
* be the value returned in the `nextPageToken` parameter in the response to
* the `searchMediaItems` request.
*
*
* string page_token = 3;
*
* @return The pageToken.
*/
@java.lang.Override
public java.lang.String getPageToken() {
java.lang.Object ref = pageToken_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
pageToken_ = s;
return s;
}
}
/**
*
*
*
* A continuation token to get the next page of the results. Adding this to
* the request returns the rows after the `pageToken`. The `pageToken` should
* be the value returned in the `nextPageToken` parameter in the response to
* the `searchMediaItems` request.
*
*
* string page_token = 3;
*
* @return The bytes for pageToken.
*/
@java.lang.Override
public com.google.protobuf.ByteString getPageTokenBytes() {
java.lang.Object ref = pageToken_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
pageToken_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int FILTERS_FIELD_NUMBER = 4;
private com.google.photos.library.v1.proto.Filters filters_;
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*
* @return Whether the filters field is set.
*/
@java.lang.Override
public boolean hasFilters() {
return filters_ != null;
}
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*
* @return The filters.
*/
@java.lang.Override
public com.google.photos.library.v1.proto.Filters getFilters() {
return filters_ == null
? com.google.photos.library.v1.proto.Filters.getDefaultInstance()
: filters_;
}
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*/
@java.lang.Override
public com.google.photos.library.v1.proto.FiltersOrBuilder getFiltersOrBuilder() {
return filters_ == null
? com.google.photos.library.v1.proto.Filters.getDefaultInstance()
: filters_;
}
public static final int ORDER_BY_FIELD_NUMBER = 5;
@SuppressWarnings("serial")
private volatile java.lang.Object orderBy_ = "";
/**
*
*
*
* An optional field to specify the sort order of the search results. The
* `orderBy` field only works when a
* [dateFilter][google.photos.library.v1.DateFilter] is used. When this
* field is not specified, results are displayed newest first, oldest last by
* their [creationTime][google.photos.types.MediaMetadata.creation_time].
* Providing `MediaMetadata.creation_time` displays search results in
* the opposite order, oldest first then newest last.
* To display results newest first then oldest last, include the `desc`
* argument as follows: `MediaMetadata.creation_time desc`.
* The only additional filters that can be used with this parameter are
* [includeArchivedMedia][google.photos.library.v1.Filters.include_archived_media]
* and
* [excludeNonAppCreatedData][google.photos.library.v1.Filters.exclude_non_app_created_data].
* No other filters are supported.
*
*
* string order_by = 5;
*
* @return The orderBy.
*/
@java.lang.Override
public java.lang.String getOrderBy() {
java.lang.Object ref = orderBy_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
orderBy_ = s;
return s;
}
}
/**
*
*
*
* An optional field to specify the sort order of the search results. The
* `orderBy` field only works when a
* [dateFilter][google.photos.library.v1.DateFilter] is used. When this
* field is not specified, results are displayed newest first, oldest last by
* their [creationTime][google.photos.types.MediaMetadata.creation_time].
* Providing `MediaMetadata.creation_time` displays search results in
* the opposite order, oldest first then newest last.
* To display results newest first then oldest last, include the `desc`
* argument as follows: `MediaMetadata.creation_time desc`.
* The only additional filters that can be used with this parameter are
* [includeArchivedMedia][google.photos.library.v1.Filters.include_archived_media]
* and
* [excludeNonAppCreatedData][google.photos.library.v1.Filters.exclude_non_app_created_data].
* No other filters are supported.
*
*
* string order_by = 5;
*
* @return The bytes for orderBy.
*/
@java.lang.Override
public com.google.protobuf.ByteString getOrderByBytes() {
java.lang.Object ref = orderBy_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
orderBy_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(albumId_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, albumId_);
}
if (pageSize_ != 0) {
output.writeInt32(2, pageSize_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pageToken_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, pageToken_);
}
if (filters_ != null) {
output.writeMessage(4, getFilters());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(orderBy_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, orderBy_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(albumId_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, albumId_);
}
if (pageSize_ != 0) {
size += com.google.protobuf.CodedOutputStream.computeInt32Size(2, pageSize_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pageToken_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, pageToken_);
}
if (filters_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, getFilters());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(orderBy_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, orderBy_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.photos.library.v1.proto.SearchMediaItemsRequest)) {
return super.equals(obj);
}
com.google.photos.library.v1.proto.SearchMediaItemsRequest other =
(com.google.photos.library.v1.proto.SearchMediaItemsRequest) obj;
if (!getAlbumId().equals(other.getAlbumId())) return false;
if (getPageSize() != other.getPageSize()) return false;
if (!getPageToken().equals(other.getPageToken())) return false;
if (hasFilters() != other.hasFilters()) return false;
if (hasFilters()) {
if (!getFilters().equals(other.getFilters())) return false;
}
if (!getOrderBy().equals(other.getOrderBy())) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + ALBUM_ID_FIELD_NUMBER;
hash = (53 * hash) + getAlbumId().hashCode();
hash = (37 * hash) + PAGE_SIZE_FIELD_NUMBER;
hash = (53 * hash) + getPageSize();
hash = (37 * hash) + PAGE_TOKEN_FIELD_NUMBER;
hash = (53 * hash) + getPageToken().hashCode();
if (hasFilters()) {
hash = (37 * hash) + FILTERS_FIELD_NUMBER;
hash = (53 * hash) + getFilters().hashCode();
}
hash = (37 * hash) + ORDER_BY_FIELD_NUMBER;
hash = (53 * hash) + getOrderBy().hashCode();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.photos.library.v1.proto.SearchMediaItemsRequest parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.photos.library.v1.proto.SearchMediaItemsRequest parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.photos.library.v1.proto.SearchMediaItemsRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.photos.library.v1.proto.SearchMediaItemsRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.photos.library.v1.proto.SearchMediaItemsRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.photos.library.v1.proto.SearchMediaItemsRequest parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.photos.library.v1.proto.SearchMediaItemsRequest parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.photos.library.v1.proto.SearchMediaItemsRequest parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.photos.library.v1.proto.SearchMediaItemsRequest parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.photos.library.v1.proto.SearchMediaItemsRequest parseDelimitedFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.photos.library.v1.proto.SearchMediaItemsRequest parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.photos.library.v1.proto.SearchMediaItemsRequest parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(
com.google.photos.library.v1.proto.SearchMediaItemsRequest prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Request to search for media items in a user's library.
* If the album id is specified, this call will return the list of media items
* in the album. If neither filters nor album id are
* specified, this call will return all media items in a user's Google Photos
* library.
* If filters are specified, this call will return all media items in
* the user's library that fulfill the filter criteria.
* Filters and album id must not both be set, as this will result in an
* invalid request.
*
*
* Protobuf type {@code google.photos.library.v1.SearchMediaItemsRequest}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.photos.library.v1.SearchMediaItemsRequest)
com.google.photos.library.v1.proto.SearchMediaItemsRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.photos.library.v1.proto.LibraryServiceProto
.internal_static_google_photos_library_v1_SearchMediaItemsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.photos.library.v1.proto.LibraryServiceProto
.internal_static_google_photos_library_v1_SearchMediaItemsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.photos.library.v1.proto.SearchMediaItemsRequest.class,
com.google.photos.library.v1.proto.SearchMediaItemsRequest.Builder.class);
}
// Construct using com.google.photos.library.v1.proto.SearchMediaItemsRequest.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
albumId_ = "";
pageSize_ = 0;
pageToken_ = "";
filters_ = null;
if (filtersBuilder_ != null) {
filtersBuilder_.dispose();
filtersBuilder_ = null;
}
orderBy_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.photos.library.v1.proto.LibraryServiceProto
.internal_static_google_photos_library_v1_SearchMediaItemsRequest_descriptor;
}
@java.lang.Override
public com.google.photos.library.v1.proto.SearchMediaItemsRequest getDefaultInstanceForType() {
return com.google.photos.library.v1.proto.SearchMediaItemsRequest.getDefaultInstance();
}
@java.lang.Override
public com.google.photos.library.v1.proto.SearchMediaItemsRequest build() {
com.google.photos.library.v1.proto.SearchMediaItemsRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.photos.library.v1.proto.SearchMediaItemsRequest buildPartial() {
com.google.photos.library.v1.proto.SearchMediaItemsRequest result =
new com.google.photos.library.v1.proto.SearchMediaItemsRequest(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.photos.library.v1.proto.SearchMediaItemsRequest result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.albumId_ = albumId_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.pageSize_ = pageSize_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.pageToken_ = pageToken_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.filters_ = filtersBuilder_ == null ? filters_ : filtersBuilder_.build();
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.orderBy_ = orderBy_;
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.photos.library.v1.proto.SearchMediaItemsRequest) {
return mergeFrom((com.google.photos.library.v1.proto.SearchMediaItemsRequest) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.photos.library.v1.proto.SearchMediaItemsRequest other) {
if (other == com.google.photos.library.v1.proto.SearchMediaItemsRequest.getDefaultInstance())
return this;
if (!other.getAlbumId().isEmpty()) {
albumId_ = other.albumId_;
bitField0_ |= 0x00000001;
onChanged();
}
if (other.getPageSize() != 0) {
setPageSize(other.getPageSize());
}
if (!other.getPageToken().isEmpty()) {
pageToken_ = other.pageToken_;
bitField0_ |= 0x00000004;
onChanged();
}
if (other.hasFilters()) {
mergeFilters(other.getFilters());
}
if (!other.getOrderBy().isEmpty()) {
orderBy_ = other.orderBy_;
bitField0_ |= 0x00000010;
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
albumId_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 16:
{
pageSize_ = input.readInt32();
bitField0_ |= 0x00000002;
break;
} // case 16
case 26:
{
pageToken_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000004;
break;
} // case 26
case 34:
{
input.readMessage(getFiltersFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000008;
break;
} // case 34
case 42:
{
orderBy_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000010;
break;
} // case 42
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object albumId_ = "";
/**
*
*
*
* Identifier of an album. If populated, lists all media items in
* specified album. Can't set in conjunction with any filters.
*
*
* string album_id = 1;
*
* @return The albumId.
*/
public java.lang.String getAlbumId() {
java.lang.Object ref = albumId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
albumId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Identifier of an album. If populated, lists all media items in
* specified album. Can't set in conjunction with any filters.
*
*
* string album_id = 1;
*
* @return The bytes for albumId.
*/
public com.google.protobuf.ByteString getAlbumIdBytes() {
java.lang.Object ref = albumId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
albumId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Identifier of an album. If populated, lists all media items in
* specified album. Can't set in conjunction with any filters.
*
*
* string album_id = 1;
*
* @param value The albumId to set.
* @return This builder for chaining.
*/
public Builder setAlbumId(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
albumId_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Identifier of an album. If populated, lists all media items in
* specified album. Can't set in conjunction with any filters.
*
*
* string album_id = 1;
*
* @return This builder for chaining.
*/
public Builder clearAlbumId() {
albumId_ = getDefaultInstance().getAlbumId();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* Identifier of an album. If populated, lists all media items in
* specified album. Can't set in conjunction with any filters.
*
*
* string album_id = 1;
*
* @param value The bytes for albumId to set.
* @return This builder for chaining.
*/
public Builder setAlbumIdBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
albumId_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private int pageSize_;
/**
*
*
*
* Maximum number of media items to return in the response. Fewer media items
* might be returned than the specified number. The default `pageSize` is 25,
* the maximum is 100.
*
*
* int32 page_size = 2;
*
* @return The pageSize.
*/
@java.lang.Override
public int getPageSize() {
return pageSize_;
}
/**
*
*
*
* Maximum number of media items to return in the response. Fewer media items
* might be returned than the specified number. The default `pageSize` is 25,
* the maximum is 100.
*
*
* int32 page_size = 2;
*
* @param value The pageSize to set.
* @return This builder for chaining.
*/
public Builder setPageSize(int value) {
pageSize_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* Maximum number of media items to return in the response. Fewer media items
* might be returned than the specified number. The default `pageSize` is 25,
* the maximum is 100.
*
*
* int32 page_size = 2;
*
* @return This builder for chaining.
*/
public Builder clearPageSize() {
bitField0_ = (bitField0_ & ~0x00000002);
pageSize_ = 0;
onChanged();
return this;
}
private java.lang.Object pageToken_ = "";
/**
*
*
*
* A continuation token to get the next page of the results. Adding this to
* the request returns the rows after the `pageToken`. The `pageToken` should
* be the value returned in the `nextPageToken` parameter in the response to
* the `searchMediaItems` request.
*
*
* string page_token = 3;
*
* @return The pageToken.
*/
public java.lang.String getPageToken() {
java.lang.Object ref = pageToken_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
pageToken_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* A continuation token to get the next page of the results. Adding this to
* the request returns the rows after the `pageToken`. The `pageToken` should
* be the value returned in the `nextPageToken` parameter in the response to
* the `searchMediaItems` request.
*
*
* string page_token = 3;
*
* @return The bytes for pageToken.
*/
public com.google.protobuf.ByteString getPageTokenBytes() {
java.lang.Object ref = pageToken_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
pageToken_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* A continuation token to get the next page of the results. Adding this to
* the request returns the rows after the `pageToken`. The `pageToken` should
* be the value returned in the `nextPageToken` parameter in the response to
* the `searchMediaItems` request.
*
*
* string page_token = 3;
*
* @param value The pageToken to set.
* @return This builder for chaining.
*/
public Builder setPageToken(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
pageToken_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* A continuation token to get the next page of the results. Adding this to
* the request returns the rows after the `pageToken`. The `pageToken` should
* be the value returned in the `nextPageToken` parameter in the response to
* the `searchMediaItems` request.
*
*
* string page_token = 3;
*
* @return This builder for chaining.
*/
public Builder clearPageToken() {
pageToken_ = getDefaultInstance().getPageToken();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
return this;
}
/**
*
*
*
* A continuation token to get the next page of the results. Adding this to
* the request returns the rows after the `pageToken`. The `pageToken` should
* be the value returned in the `nextPageToken` parameter in the response to
* the `searchMediaItems` request.
*
*
* string page_token = 3;
*
* @param value The bytes for pageToken to set.
* @return This builder for chaining.
*/
public Builder setPageTokenBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
pageToken_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
private com.google.photos.library.v1.proto.Filters filters_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.photos.library.v1.proto.Filters,
com.google.photos.library.v1.proto.Filters.Builder,
com.google.photos.library.v1.proto.FiltersOrBuilder>
filtersBuilder_;
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*
* @return Whether the filters field is set.
*/
public boolean hasFilters() {
return ((bitField0_ & 0x00000008) != 0);
}
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*
* @return The filters.
*/
public com.google.photos.library.v1.proto.Filters getFilters() {
if (filtersBuilder_ == null) {
return filters_ == null
? com.google.photos.library.v1.proto.Filters.getDefaultInstance()
: filters_;
} else {
return filtersBuilder_.getMessage();
}
}
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*/
public Builder setFilters(com.google.photos.library.v1.proto.Filters value) {
if (filtersBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
filters_ = value;
} else {
filtersBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*/
public Builder setFilters(com.google.photos.library.v1.proto.Filters.Builder builderForValue) {
if (filtersBuilder_ == null) {
filters_ = builderForValue.build();
} else {
filtersBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*/
public Builder mergeFilters(com.google.photos.library.v1.proto.Filters value) {
if (filtersBuilder_ == null) {
if (((bitField0_ & 0x00000008) != 0)
&& filters_ != null
&& filters_ != com.google.photos.library.v1.proto.Filters.getDefaultInstance()) {
getFiltersBuilder().mergeFrom(value);
} else {
filters_ = value;
}
} else {
filtersBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*/
public Builder clearFilters() {
bitField0_ = (bitField0_ & ~0x00000008);
filters_ = null;
if (filtersBuilder_ != null) {
filtersBuilder_.dispose();
filtersBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*/
public com.google.photos.library.v1.proto.Filters.Builder getFiltersBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getFiltersFieldBuilder().getBuilder();
}
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*/
public com.google.photos.library.v1.proto.FiltersOrBuilder getFiltersOrBuilder() {
if (filtersBuilder_ != null) {
return filtersBuilder_.getMessageOrBuilder();
} else {
return filters_ == null
? com.google.photos.library.v1.proto.Filters.getDefaultInstance()
: filters_;
}
}
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.photos.library.v1.proto.Filters,
com.google.photos.library.v1.proto.Filters.Builder,
com.google.photos.library.v1.proto.FiltersOrBuilder>
getFiltersFieldBuilder() {
if (filtersBuilder_ == null) {
filtersBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.photos.library.v1.proto.Filters,
com.google.photos.library.v1.proto.Filters.Builder,
com.google.photos.library.v1.proto.FiltersOrBuilder>(
getFilters(), getParentForChildren(), isClean());
filters_ = null;
}
return filtersBuilder_;
}
private java.lang.Object orderBy_ = "";
/**
*
*
*
* An optional field to specify the sort order of the search results. The
* `orderBy` field only works when a
* [dateFilter][google.photos.library.v1.DateFilter] is used. When this
* field is not specified, results are displayed newest first, oldest last by
* their [creationTime][google.photos.types.MediaMetadata.creation_time].
* Providing `MediaMetadata.creation_time` displays search results in
* the opposite order, oldest first then newest last.
* To display results newest first then oldest last, include the `desc`
* argument as follows: `MediaMetadata.creation_time desc`.
* The only additional filters that can be used with this parameter are
* [includeArchivedMedia][google.photos.library.v1.Filters.include_archived_media]
* and
* [excludeNonAppCreatedData][google.photos.library.v1.Filters.exclude_non_app_created_data].
* No other filters are supported.
*
*
* string order_by = 5;
*
* @return The orderBy.
*/
public java.lang.String getOrderBy() {
java.lang.Object ref = orderBy_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
orderBy_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* An optional field to specify the sort order of the search results. The
* `orderBy` field only works when a
* [dateFilter][google.photos.library.v1.DateFilter] is used. When this
* field is not specified, results are displayed newest first, oldest last by
* their [creationTime][google.photos.types.MediaMetadata.creation_time].
* Providing `MediaMetadata.creation_time` displays search results in
* the opposite order, oldest first then newest last.
* To display results newest first then oldest last, include the `desc`
* argument as follows: `MediaMetadata.creation_time desc`.
* The only additional filters that can be used with this parameter are
* [includeArchivedMedia][google.photos.library.v1.Filters.include_archived_media]
* and
* [excludeNonAppCreatedData][google.photos.library.v1.Filters.exclude_non_app_created_data].
* No other filters are supported.
*
*
* string order_by = 5;
*
* @return The bytes for orderBy.
*/
public com.google.protobuf.ByteString getOrderByBytes() {
java.lang.Object ref = orderBy_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
orderBy_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* An optional field to specify the sort order of the search results. The
* `orderBy` field only works when a
* [dateFilter][google.photos.library.v1.DateFilter] is used. When this
* field is not specified, results are displayed newest first, oldest last by
* their [creationTime][google.photos.types.MediaMetadata.creation_time].
* Providing `MediaMetadata.creation_time` displays search results in
* the opposite order, oldest first then newest last.
* To display results newest first then oldest last, include the `desc`
* argument as follows: `MediaMetadata.creation_time desc`.
* The only additional filters that can be used with this parameter are
* [includeArchivedMedia][google.photos.library.v1.Filters.include_archived_media]
* and
* [excludeNonAppCreatedData][google.photos.library.v1.Filters.exclude_non_app_created_data].
* No other filters are supported.
*
*
* string order_by = 5;
*
* @param value The orderBy to set.
* @return This builder for chaining.
*/
public Builder setOrderBy(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
orderBy_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* An optional field to specify the sort order of the search results. The
* `orderBy` field only works when a
* [dateFilter][google.photos.library.v1.DateFilter] is used. When this
* field is not specified, results are displayed newest first, oldest last by
* their [creationTime][google.photos.types.MediaMetadata.creation_time].
* Providing `MediaMetadata.creation_time` displays search results in
* the opposite order, oldest first then newest last.
* To display results newest first then oldest last, include the `desc`
* argument as follows: `MediaMetadata.creation_time desc`.
* The only additional filters that can be used with this parameter are
* [includeArchivedMedia][google.photos.library.v1.Filters.include_archived_media]
* and
* [excludeNonAppCreatedData][google.photos.library.v1.Filters.exclude_non_app_created_data].
* No other filters are supported.
*
*
* string order_by = 5;
*
* @return This builder for chaining.
*/
public Builder clearOrderBy() {
orderBy_ = getDefaultInstance().getOrderBy();
bitField0_ = (bitField0_ & ~0x00000010);
onChanged();
return this;
}
/**
*
*
*
* An optional field to specify the sort order of the search results. The
* `orderBy` field only works when a
* [dateFilter][google.photos.library.v1.DateFilter] is used. When this
* field is not specified, results are displayed newest first, oldest last by
* their [creationTime][google.photos.types.MediaMetadata.creation_time].
* Providing `MediaMetadata.creation_time` displays search results in
* the opposite order, oldest first then newest last.
* To display results newest first then oldest last, include the `desc`
* argument as follows: `MediaMetadata.creation_time desc`.
* The only additional filters that can be used with this parameter are
* [includeArchivedMedia][google.photos.library.v1.Filters.include_archived_media]
* and
* [excludeNonAppCreatedData][google.photos.library.v1.Filters.exclude_non_app_created_data].
* No other filters are supported.
*
*
* string order_by = 5;
*
* @param value The bytes for orderBy to set.
* @return This builder for chaining.
*/
public Builder setOrderByBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
orderBy_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.photos.library.v1.SearchMediaItemsRequest)
}
// @@protoc_insertion_point(class_scope:google.photos.library.v1.SearchMediaItemsRequest)
private static final com.google.photos.library.v1.proto.SearchMediaItemsRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.photos.library.v1.proto.SearchMediaItemsRequest();
}
public static com.google.photos.library.v1.proto.SearchMediaItemsRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public SearchMediaItemsRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.photos.library.v1.proto.SearchMediaItemsRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}