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

org.apache.rocketmq.shaded.com.google.type.DateOrBuilder Maven / Gradle / Ivy

There is a newer version: 5.0.7
Show newest version
/*
 * 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/type/date.proto

package org.apache.rocketmq.shaded.com.google.type;

public interface DateOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.type.Date)
    org.apache.rocketmq.shaded.com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * Year of the date. Must be from 1 to 9999, or 0 to specify a date without
   * a year.
   * 
* * int32 year = 1; * * @return The year. */ int getYear(); /** * * *
   * Month of a year. Must be from 1 to 12, or 0 to specify a year without a
   * month and day.
   * 
* * int32 month = 2; * * @return The month. */ int getMonth(); /** * * *
   * Day of a month. Must be from 1 to 31 and valid for the year and month, or 0
   * to specify a year by itself or a year and month where the day isn't
   * significant.
   * 
* * int32 day = 3; * * @return The day. */ int getDay(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy