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

com.google.appengine.repackaged.com.google.type.TimeOfDayOrBuilder Maven / Gradle / Ivy

Go to download

API for Google App Engine standard environment with some of the dependencies shaded (repackaged)

There is a newer version: 2.0.27
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/timeofday.proto

package com.google.type;

public interface TimeOfDayOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.type.TimeOfDay)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
   * to allow the value "24:00:00" for scenarios like business closing time.
   * 
* * int32 hours = 1; * * @return The hours. */ int getHours(); /** * * *
   * Minutes of hour of day. Must be from 0 to 59.
   * 
* * int32 minutes = 2; * * @return The minutes. */ int getMinutes(); /** * * *
   * Seconds of minutes of the time. Must normally be from 0 to 59. An API may
   * allow the value 60 if it allows leap-seconds.
   * 
* * int32 seconds = 3; * * @return The seconds. */ int getSeconds(); /** * * *
   * Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
   * 
* * int32 nanos = 4; * * @return The nanos. */ int getNanos(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy