Staging
v0.5.0
https://repo1.maven.org/maven2/org/prefuse/prefuse
Raw File
OrPredicate.java
package prefuse.data.expression;

import java.util.Iterator;

import prefuse.data.Tuple;

/**
 * Predicate representing an "or" clause of sub-predicates.
 * 
 * @author <a href="http://jheer.org">jeffrey heer</a>
 */
public class OrPredicate extends CompositePredicate {

    /**
     * Create an empty OrPredicate. Empty OrPredicates return false
     * by default.
     */
    public OrPredicate() {
    }
    
    /**
     * Create a new OrPredicate.
     * @param p1 the sole clause of this predicate
     */
    public OrPredicate(Predicate p1) {
        add(p1);
    }
    
    /**
     * Create a new OrPredicate.
     * @param p1 the first clause of this predicate
     * @param p2 the second clause of this predicate
     */
    public OrPredicate(Predicate p1, Predicate p2) {
        super(p1, p2);
    }
   
    /**
     * @see prefuse.data.expression.Expression#getBoolean(prefuse.data.Tuple)
     */
    public boolean getBoolean(Tuple t) {
        if ( m_clauses.size() == 0 )
            return false;
        
        Iterator iter = m_clauses.iterator();
        while ( iter.hasNext() ) {
            Predicate p = (Predicate)iter.next();
            if ( p.getBoolean(t) ) {
                return true;
            }
        }
        return false;
    }
    
    /**
     * @see java.lang.Object#toString()
     */
    public String toString() {
        return ( size() == 0 ? "FALSE" : toString("OR") );
    }

} // end of class OrPredicate
back to top