Interface PropertyOrBuilder

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

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

    Modifier and Type
    Method
    Description
    The description of the property
    com.google.protobuf.ByteString
    The description of the property
    The name of the property (a.k.a key).
    com.google.protobuf.ByteString
    The name of the property (a.k.a key).
    The type of this property.
    int
    The type of this property.

    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 Details

    • getName

      String getName()
       The name of the property (a.k.a key).
       
      string name = 1;
      Returns:
      The name.
    • getNameBytes

      com.google.protobuf.ByteString getNameBytes()
       The name of the property (a.k.a key).
       
      string name = 1;
      Returns:
      The bytes for name.
    • getTypeValue

      int getTypeValue()
       The type of this property.
       
      .google.api.Property.PropertyType type = 2;
      Returns:
      The enum numeric value on the wire for type.
    • getType

       The type of this property.
       
      .google.api.Property.PropertyType type = 2;
      Returns:
      The type.
    • getDescription

      String getDescription()
       The description of the property
       
      string description = 3;
      Returns:
      The description.
    • getDescriptionBytes

      com.google.protobuf.ByteString getDescriptionBytes()
       The description of the property
       
      string description = 3;
      Returns:
      The bytes for description.