Interface PubSub.KeyValueOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    PubSub.KeyValue, PubSub.KeyValue.Builder
    Enclosing class:
    PubSub

    public static interface PubSub.KeyValueOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getAttribute()
      * Attribute of entity.
      com.google.protobuf.ByteString getAttributeBytes()
      * Attribute of entity.
      boolean getDelete()
      * Is this attribute delete?
      boolean getDeleteWildcard()
      * Is this wildcard attribute delete?
      java.lang.String getKey()
      * Key of entity.
      com.google.protobuf.ByteString getKeyBytes()
      * Key of entity.
      long getStamp()
      * Timestamp of the write.
      com.google.protobuf.ByteString getValue()
      * Value (if not delete)
      • 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

      • getKey

        java.lang.String getKey()
         * Key of entity. 
         
        string key = 1;
        Returns:
        The key.
      • getKeyBytes

        com.google.protobuf.ByteString getKeyBytes()
         * Key of entity. 
         
        string key = 1;
        Returns:
        The bytes for key.
      • getAttribute

        java.lang.String getAttribute()
         * Attribute of entity. 
         
        string attribute = 2;
        Returns:
        The attribute.
      • getAttributeBytes

        com.google.protobuf.ByteString getAttributeBytes()
         * Attribute of entity. 
         
        string attribute = 2;
        Returns:
        The bytes for attribute.
      • getValue

        com.google.protobuf.ByteString getValue()
         * Value (if not delete) 
         
        bytes value = 3;
        Returns:
        The value.
      • getDelete

        boolean getDelete()
         * Is this attribute delete? 
         
        bool delete = 4;
        Returns:
        The delete.
      • getDeleteWildcard

        boolean getDeleteWildcard()
         * Is this wildcard attribute delete? 
         
        bool deleteWildcard = 5;
        Returns:
        The deleteWildcard.
      • getStamp

        long getStamp()
         * Timestamp of the write. 
         
        uint64 stamp = 6;
        Returns:
        The stamp.