Interface QueryParameterMatcherOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Specifies the name of a key that must be present in the requested ``path``'s query string.
      com.google.protobuf.ByteString getNameBytes()
      Specifies the name of a key that must be present in the requested ``path``'s query string.
      boolean getPresentMatch()
      Specifies whether a query parameter should be present.
      QueryParameterMatcher.QueryParameterMatchSpecifierCase getQueryParameterMatchSpecifierCase()  
      StringMatcher getStringMatch()
      Specifies whether a query parameter value should match against a string.
      StringMatcherOrBuilder getStringMatchOrBuilder()
      Specifies whether a query parameter value should match against a string.
      boolean hasPresentMatch()
      Specifies whether a query parameter should be present.
      boolean hasStringMatch()
      Specifies whether a query parameter value should match against a string.
      • 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

      • getName

        java.lang.String getName()
         Specifies the name of a key that must be present in the requested
         ``path``'s query string.
         
        string name = 1 [(.validate.rules) = { ... }
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         Specifies the name of a key that must be present in the requested
         ``path``'s query string.
         
        string name = 1 [(.validate.rules) = { ... }
        Returns:
        The bytes for name.
      • hasStringMatch

        boolean hasStringMatch()
         Specifies whether a query parameter value should match against a string.
         
        .envoy.type.matcher.v3.StringMatcher string_match = 5 [(.validate.rules) = { ... }
        Returns:
        Whether the stringMatch field is set.
      • getStringMatch

        StringMatcher getStringMatch()
         Specifies whether a query parameter value should match against a string.
         
        .envoy.type.matcher.v3.StringMatcher string_match = 5 [(.validate.rules) = { ... }
        Returns:
        The stringMatch.
      • getStringMatchOrBuilder

        StringMatcherOrBuilder getStringMatchOrBuilder()
         Specifies whether a query parameter value should match against a string.
         
        .envoy.type.matcher.v3.StringMatcher string_match = 5 [(.validate.rules) = { ... }
      • hasPresentMatch

        boolean hasPresentMatch()
         Specifies whether a query parameter should be present.
         
        bool present_match = 6;
        Returns:
        Whether the presentMatch field is set.
      • getPresentMatch

        boolean getPresentMatch()
         Specifies whether a query parameter should be present.
         
        bool present_match = 6;
        Returns:
        The presentMatch.