Interface TimestampValueOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    TimestampValue, TimestampValue.Builder

    public interface TimestampValueOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getTextValue()
      The string must represent a valid instant in UTC and is parsed using java.time.format.DateTimeFormatter.ISO_INSTANT.
      com.google.protobuf.ByteString getTextValueBytes()
      The string must represent a valid instant in UTC and is parsed using java.time.format.DateTimeFormatter.ISO_INSTANT.
      com.google.protobuf.Timestamp getTimestampValue()
      Timestamp value
      com.google.protobuf.TimestampOrBuilder getTimestampValueOrBuilder()
      Timestamp value
      TimestampValue.ValueCase getValueCase()  
      boolean hasTextValue()
      The string must represent a valid instant in UTC and is parsed using java.time.format.DateTimeFormatter.ISO_INSTANT.
      boolean hasTimestampValue()
      Timestamp value
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • hasTimestampValue

        boolean hasTimestampValue()
         Timestamp value
         
        .google.protobuf.Timestamp timestamp_value = 1;
        Returns:
        Whether the timestampValue field is set.
      • getTimestampValue

        com.google.protobuf.Timestamp getTimestampValue()
         Timestamp value
         
        .google.protobuf.Timestamp timestamp_value = 1;
        Returns:
        The timestampValue.
      • getTimestampValueOrBuilder

        com.google.protobuf.TimestampOrBuilder getTimestampValueOrBuilder()
         Timestamp value
         
        .google.protobuf.Timestamp timestamp_value = 1;
      • hasTextValue

        boolean hasTextValue()
         The string must represent a valid instant in UTC and is parsed using
         java.time.format.DateTimeFormatter.ISO_INSTANT.
         e.g. "2013-09-29T18:46:19Z"
         
        string text_value = 2;
        Returns:
        Whether the textValue field is set.
      • getTextValue

        String getTextValue()
         The string must represent a valid instant in UTC and is parsed using
         java.time.format.DateTimeFormatter.ISO_INSTANT.
         e.g. "2013-09-29T18:46:19Z"
         
        string text_value = 2;
        Returns:
        The textValue.
      • getTextValueBytes

        com.google.protobuf.ByteString getTextValueBytes()
         The string must represent a valid instant in UTC and is parsed using
         java.time.format.DateTimeFormatter.ISO_INSTANT.
         e.g. "2013-09-29T18:46:19Z"
         
        string text_value = 2;
        Returns:
        The bytes for textValue.