Interface Protos.ExtensionOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
All Known Implementing Classes:
Protos.Extension, Protos.Extension.Builder
Enclosing class:
Protos

public static interface Protos.ExtensionOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    com.google.protobuf.ByteString
    required bytes data = 2;
    like org.whatever.foo.bar
    com.google.protobuf.ByteString
    like org.whatever.foo.bar
    boolean
    If we do not understand a mandatory extension, abort to prevent data loss.
    boolean
    required bytes data = 2;
    boolean
    like org.whatever.foo.bar
    boolean
    If we do not understand a mandatory extension, abort to prevent data loss.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    getDefaultInstanceForType, isInitialized
  • Method Details

    • hasId

      boolean hasId()
       like org.whatever.foo.bar
       
      required string id = 1;
      Returns:
      Whether the id field is set.
    • getId

      String getId()
       like org.whatever.foo.bar
       
      required string id = 1;
      Returns:
      The id.
    • getIdBytes

      com.google.protobuf.ByteString getIdBytes()
       like org.whatever.foo.bar
       
      required string id = 1;
      Returns:
      The bytes for id.
    • hasData

      boolean hasData()
      required bytes data = 2;
      Returns:
      Whether the data field is set.
    • getData

      com.google.protobuf.ByteString getData()
      required bytes data = 2;
      Returns:
      The data.
    • hasMandatory

      boolean hasMandatory()
       If we do not understand a mandatory extension, abort to prevent data loss.
       For example, this could be applied to a new type of holding, such as a contract, where
       dropping of an extension in a read/write cycle could cause loss of value.
       
      required bool mandatory = 3;
      Returns:
      Whether the mandatory field is set.
    • getMandatory

      boolean getMandatory()
       If we do not understand a mandatory extension, abort to prevent data loss.
       For example, this could be applied to a new type of holding, such as a contract, where
       dropping of an extension in a read/write cycle could cause loss of value.
       
      required bool mandatory = 3;
      Returns:
      The mandatory.