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

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

The 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.BOOLEAN_VALUE_FIELD_NUMBER;

public final class BooleanValue extends Value {

  private static final long serialVersionUID = -6692551696100439451L;

  static final BaseMarshaller MARSHALLER =
      new BaseMarshaller() {

        private static final long serialVersionUID = 5178009712526977429L;

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

        @Override
        public Builder newBuilder(Boolean value) {
          return BooleanValue.newBuilder(value);
        }

        @Override
        protected Boolean getValue(com.google.datastore.v1.Value from) {
          return from.getBooleanValue();
        }

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

  public static final class Builder extends Value.BaseBuilder {

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

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

  public BooleanValue(boolean value) {
    this(newBuilder(value));
  }

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

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

  public static BooleanValue of(boolean value) {
    return new BooleanValue(value);
  }

  public static Builder newBuilder(boolean value) {
    return new Builder().set(value);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy