Interface CustomParameterOrBuilder

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

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

    Modifier and Type
    Method
    Description
    The key matching the parameter tag name.
    com.google.protobuf.ByteString
    The key matching the parameter tag name.
    The value to be substituted.
    com.google.protobuf.ByteString
    The value to be substituted.
    boolean
    The key matching the parameter tag name.
    boolean
    The value to be substituted.

    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

    • hasKey

      boolean hasKey()
       The key matching the parameter tag name.
       
      optional string key = 3;
      Returns:
      Whether the key field is set.
    • getKey

      String getKey()
       The key matching the parameter tag name.
       
      optional string key = 3;
      Returns:
      The key.
    • getKeyBytes

      com.google.protobuf.ByteString getKeyBytes()
       The key matching the parameter tag name.
       
      optional string key = 3;
      Returns:
      The bytes for key.
    • hasValue

      boolean hasValue()
       The value to be substituted.
       
      optional string value = 4;
      Returns:
      Whether the value field is set.
    • getValue

      String getValue()
       The value to be substituted.
       
      optional string value = 4;
      Returns:
      The value.
    • getValueBytes

      com.google.protobuf.ByteString getValueBytes()
       The value to be substituted.
       
      optional string value = 4;
      Returns:
      The bytes for value.