Interface PreparedQueryCache.Exclusion

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getPattern()
      The pattern (either the exact query string or a regular expression) that denotes this exclusion.
      java.lang.String getReason()
      Gets the human-readable reason for excluding this query from being cached.
      boolean isStrong()
      Affirms if this exclusion is strong i.e. can never be reversed.
      boolean matches​(java.lang.String id)
      Affirms if this exclusion matches the given identifier.
    • Method Detail

      • isStrong

        boolean isStrong()
        Affirms if this exclusion is strong i.e. can never be reversed.
      • getReason

        java.lang.String getReason()
        Gets the human-readable reason for excluding this query from being cached.
      • getPattern

        java.lang.String getPattern()
        The pattern (either the exact query string or a regular expression) that denotes this exclusion.
      • matches

        boolean matches​(java.lang.String id)
        Affirms if this exclusion matches the given identifier.