Class IsGreaterThanImpl

    • Method Detail

      • accept

        public Object accept​(FilterVisitor visitor,
                             Object extraData)
        Description copied from class: CompareFilterImpl
        Used by FilterVisitors to perform some action on this filter instance. Typicaly used by Filter decoders, but may also be used by any thing which needs infomration from filter structure. Implementations should always call: visitor.visit(this); It is importatant that this is not left to a parent class unless the parents API is identical.
        Specified by:
        accept in interface Filter
        Specified by:
        accept in class CompareFilterImpl
        Parameters:
        visitor - The visitor which requires access to this filter, the method must call visitor.visit(this);