/*
 * Copyright 2020 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
 *
 *     https://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.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/privacy/dlp/v2/dlp.proto

package com.google.privacy.dlp.v2;

public interface ValueOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.privacy.dlp.v2.Value)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * integer
   * </pre>
   *
   * <code>int64 integer_value = 1;</code>
   *
   * @return Whether the integerValue field is set.
   */
  boolean hasIntegerValue();
  /**
   *
   *
   * <pre>
   * integer
   * </pre>
   *
   * <code>int64 integer_value = 1;</code>
   *
   * @return The integerValue.
   */
  long getIntegerValue();

  /**
   *
   *
   * <pre>
   * float
   * </pre>
   *
   * <code>double float_value = 2;</code>
   *
   * @return Whether the floatValue field is set.
   */
  boolean hasFloatValue();
  /**
   *
   *
   * <pre>
   * float
   * </pre>
   *
   * <code>double float_value = 2;</code>
   *
   * @return The floatValue.
   */
  double getFloatValue();

  /**
   *
   *
   * <pre>
   * string
   * </pre>
   *
   * <code>string string_value = 3;</code>
   *
   * @return Whether the stringValue field is set.
   */
  boolean hasStringValue();
  /**
   *
   *
   * <pre>
   * string
   * </pre>
   *
   * <code>string string_value = 3;</code>
   *
   * @return The stringValue.
   */
  java.lang.String getStringValue();
  /**
   *
   *
   * <pre>
   * string
   * </pre>
   *
   * <code>string string_value = 3;</code>
   *
   * @return The bytes for stringValue.
   */
  com.google.protobuf.ByteString getStringValueBytes();

  /**
   *
   *
   * <pre>
   * boolean
   * </pre>
   *
   * <code>bool boolean_value = 4;</code>
   *
   * @return Whether the booleanValue field is set.
   */
  boolean hasBooleanValue();
  /**
   *
   *
   * <pre>
   * boolean
   * </pre>
   *
   * <code>bool boolean_value = 4;</code>
   *
   * @return The booleanValue.
   */
  boolean getBooleanValue();

  /**
   *
   *
   * <pre>
   * timestamp
   * </pre>
   *
   * <code>.google.protobuf.Timestamp timestamp_value = 5;</code>
   *
   * @return Whether the timestampValue field is set.
   */
  boolean hasTimestampValue();
  /**
   *
   *
   * <pre>
   * timestamp
   * </pre>
   *
   * <code>.google.protobuf.Timestamp timestamp_value = 5;</code>
   *
   * @return The timestampValue.
   */
  com.google.protobuf.Timestamp getTimestampValue();
  /**
   *
   *
   * <pre>
   * timestamp
   * </pre>
   *
   * <code>.google.protobuf.Timestamp timestamp_value = 5;</code>
   */
  com.google.protobuf.TimestampOrBuilder getTimestampValueOrBuilder();

  /**
   *
   *
   * <pre>
   * time of day
   * </pre>
   *
   * <code>.google.type.TimeOfDay time_value = 6;</code>
   *
   * @return Whether the timeValue field is set.
   */
  boolean hasTimeValue();
  /**
   *
   *
   * <pre>
   * time of day
   * </pre>
   *
   * <code>.google.type.TimeOfDay time_value = 6;</code>
   *
   * @return The timeValue.
   */
  com.google.type.TimeOfDay getTimeValue();
  /**
   *
   *
   * <pre>
   * time of day
   * </pre>
   *
   * <code>.google.type.TimeOfDay time_value = 6;</code>
   */
  com.google.type.TimeOfDayOrBuilder getTimeValueOrBuilder();

  /**
   *
   *
   * <pre>
   * date
   * </pre>
   *
   * <code>.google.type.Date date_value = 7;</code>
   *
   * @return Whether the dateValue field is set.
   */
  boolean hasDateValue();
  /**
   *
   *
   * <pre>
   * date
   * </pre>
   *
   * <code>.google.type.Date date_value = 7;</code>
   *
   * @return The dateValue.
   */
  com.google.type.Date getDateValue();
  /**
   *
   *
   * <pre>
   * date
   * </pre>
   *
   * <code>.google.type.Date date_value = 7;</code>
   */
  com.google.type.DateOrBuilder getDateValueOrBuilder();

  /**
   *
   *
   * <pre>
   * day of week
   * </pre>
   *
   * <code>.google.type.DayOfWeek day_of_week_value = 8;</code>
   *
   * @return Whether the dayOfWeekValue field is set.
   */
  boolean hasDayOfWeekValue();
  /**
   *
   *
   * <pre>
   * day of week
   * </pre>
   *
   * <code>.google.type.DayOfWeek day_of_week_value = 8;</code>
   *
   * @return The enum numeric value on the wire for dayOfWeekValue.
   */
  int getDayOfWeekValueValue();
  /**
   *
   *
   * <pre>
   * day of week
   * </pre>
   *
   * <code>.google.type.DayOfWeek day_of_week_value = 8;</code>
   *
   * @return The dayOfWeekValue.
   */
  com.google.type.DayOfWeek getDayOfWeekValue();

  public com.google.privacy.dlp.v2.Value.TypeCase getTypeCase();
}
