Package com.ngdata.hbaseindexer.parse.extract

Examples of com.ngdata.hbaseindexer.parse.extract.PrefixMatchingQualifierExtractor


                } else {
                    this.extractor = new SingleCellExtractor(columnFamily, qualifier);
                }
            } else {
                if (isWildCard) {
                    this.extractor = new PrefixMatchingQualifierExtractor(columnFamily, qualifier);
                } else {
                    throw new IllegalArgumentException("Can't create a non-prefix-based qualifier extractor");
                }
            }
           
View Full Code Here

TOP

Related Classes of com.ngdata.hbaseindexer.parse.extract.PrefixMatchingQualifierExtractor

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.