Interface ValuesDefOrBuilder

All Superinterfaces:
MessageLiteOrBuilder, MessageOrBuilder
All Known Implementing Classes:
ValuesDef, ValuesDef.Builder

public interface ValuesDefOrBuilder extends MessageOrBuilder
  • Method Details

    • getValuesList

      List<String> getValuesList()
      Value names that have been seen in this context.
      
      repeated string values = 1;
      Returns:
      A list containing the values.
    • getValuesCount

      int getValuesCount()
      Value names that have been seen in this context.
      
      repeated string values = 1;
      Returns:
      The count of values.
    • getValues

      String getValues(int index)
      Value names that have been seen in this context.
      
      repeated string values = 1;
      Parameters:
      index - The index of the element to return.
      Returns:
      The values at the given index.
    • getValuesBytes

      ByteString getValuesBytes(int index)
      Value names that have been seen in this context.
      
      repeated string values = 1;
      Parameters:
      index - The index of the value to return.
      Returns:
      The bytes of the values at the given index.
    • getExternalValuesCount

      int getExternalValuesCount()
      Value names referenced by but external to this context.
      
      map<string, string> external_values = 2;
    • containsExternalValues

      boolean containsExternalValues(String key)
      Value names referenced by but external to this context.
      
      map<string, string> external_values = 2;
    • getExternalValues

      @Deprecated Map<String,String> getExternalValues()
      Deprecated.
    • getExternalValuesMap

      Map<String,String> getExternalValuesMap()
      Value names referenced by but external to this context.
      
      map<string, string> external_values = 2;
    • getExternalValuesOrDefault

      String getExternalValuesOrDefault(String key, String defaultValue)
      Value names referenced by but external to this context.
      
      map<string, string> external_values = 2;
    • getExternalValuesOrThrow

      String getExternalValuesOrThrow(String key)
      Value names referenced by but external to this context.
      
      map<string, string> external_values = 2;