Interface AttributeList.Filter

  • Enclosing class:
    AttributeList

    public static interface AttributeList.Filter
    Interface to filter each attribute before entering it in the AttributeList.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean acceptAttribute​(java.lang.String attrName, java.lang.String attrValue, char dlm)
      Call back to check if an attribute must be entered.
    • Method Detail

      • acceptAttribute

        boolean acceptAttribute​(java.lang.String attrName,
                                java.lang.String attrValue,
                                char dlm)
        Call back to check if an attribute must be entered.
        Parameters:
        attrName - The name of the attribute.
        attrValue - The unquoted value of the attribute.
        dlm - Delimiter that started the attribute value (' or "), or '\0' if none.
        Returns:
        true if the attribute can be entered; false, otherwise.