Package org.dmg.pmml

Examples of org.dmg.pmml.CompoundPredicate


        }
      }

    if( predicate instanceof CompoundPredicate )
      {
      CompoundPredicate compoundPredicate = (CompoundPredicate) predicate;

      List<cascading.pattern.model.tree.predicate.Predicate> predicates = new ArrayList<cascading.pattern.model.tree.predicate.Predicate>();

      for( Predicate child : compoundPredicate.getPredicates() )
        predicates.add( getPredicateFor( modelSchema, child ) );

      CompoundPredicate.BooleanOperator operator = compoundPredicate.getBooleanOperator();

      switch( operator )
        {
        case OR:
          return new OrPredicate( predicates );
View Full Code Here

TOP

Related Classes of org.dmg.pmml.CompoundPredicate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.