Package com.thinkaurelius.faunus.mapreduce.util

Examples of com.thinkaurelius.faunus.mapreduce.util.ElementChecker


            } else {
                throw new IOException("Class " + valueClass + " is an unsupported value class");
            }

            final Compare compare = Compare.valueOf(context.getConfiguration().get(COMPARE));
            this.elementChecker = new ElementChecker(key, compare, values);
        }
View Full Code Here


                endValue = context.getConfiguration().getFloat(END_VALUE, Float.MAX_VALUE);
            } else {
                throw new IOException("Class " + valueClass + " is an unsupported value class");
            }

            this.startChecker = new ElementChecker(key, Compare.GREATER_THAN_EQUAL, startValue);
            this.endChecker = new ElementChecker(key, Compare.LESS_THAN, endValue);
        }
View Full Code Here

TOP

Related Classes of com.thinkaurelius.faunus.mapreduce.util.ElementChecker

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.