All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.datastore.BlobValue Maven / Gradle / Ivy

There is a newer version: 2.24.2
Show newest version
/*
 * Copyright 2015 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.cloud.datastore;

import static com.google.datastore.v1.Value.BLOB_VALUE_FIELD_NUMBER;

public final class BlobValue extends Value {

  private static final long serialVersionUID = -5096238337676649540L;

  static final BaseMarshaller MARSHALLER =
      new BaseMarshaller() {

        private static final long serialVersionUID = -739627441374592171L;

        @Override
        public int getProtoFieldId() {
          return BLOB_VALUE_FIELD_NUMBER;
        }

        @Override
        public Builder newBuilder(Blob value) {
          return BlobValue.newBuilder(value);
        }

        @Override
        protected Blob getValue(com.google.datastore.v1.Value from) {
          return new Blob(from.getBlobValue());
        }

        @Override
        protected void setValue(BlobValue from, com.google.datastore.v1.Value.Builder to) {
          to.setBlobValue(from.get().getByteString());
        }
      };

  public static final class Builder extends Value.BaseBuilder {

    private Builder() {
      super(ValueType.BLOB);
    }

    @Override
    public BlobValue build() {
      return new BlobValue(this);
    }
  }

  public BlobValue(Blob blob) {
    this(newBuilder(blob));
  }

  private BlobValue(Builder builder) {
    super(builder);
  }

  @Override
  public Builder toBuilder() {
    return new Builder().mergeFrom(this);
  }

  public static BlobValue of(Blob blob) {
    return new BlobValue(blob);
  }

  public static Builder newBuilder(Blob blob) {
    return new Builder().set(blob);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy