Class AttributeValueAssertionFilter

    • Method Detail

      • approximatelyEqual

        public static AttributeValueAssertionFilter approximatelyEqual​(String attribute,
                                                                       String value)
        Creates an Approximate Filter : ( <attribute> ~= <value> )
        Parameters:
        attribute - The AttributeType
        value - The Value
        Returns:
        An instance of the Approximate Filter
      • equal

        public static AttributeValueAssertionFilter equal​(String attribute,
                                                          String value)
        Creates an equal Filter : ( <attribute> = <value> )
        Parameters:
        attribute - The AttributeType
        value - The Value
        Returns:
        An instance of the Equal Filter
      • greaterThanOrEqual

        public static AttributeValueAssertionFilter greaterThanOrEqual​(String attribute,
                                                                       String value)
        Creates a Greater Than Or Equal Filter : ( <attribute> >= <value> )
        Parameters:
        attribute - The AttributeType
        value - The Value
        Returns:
        An instance of the Greater Than Or Equal Filter
      • lessThanOrEqual

        public static AttributeValueAssertionFilter lessThanOrEqual​(String attribute,
                                                                    String value)
        Creates a Less Than Or Equal Filter : ( <attribute> <= <value> )
        Parameters:
        attribute - The AttributeType
        value - The Value
        Returns:
        An instance of the Less Than Or Equal Filter
      • build

        public StringBuilder build​(StringBuilder builder)
        Constructs a String representation of a Filter
        Parameters:
        builder - The current buffer containing the on going representation of the filter
        Returns:
        The constructed String