Package com.ngdata.hbaseindexer.parse

Examples of com.ngdata.hbaseindexer.parse.ByteArrayValueMapper


              }
            }
           
            this.type = configs.getString(config, "type", "byte[]");
            if (type.equals("byte[]")) { // pass through byte[] to downstream morphline commands without conversion
                this.byteArrayMapper = new ByteArrayValueMapper() {
                    @Override
                    public Collection map(byte[] input) {
                        return Collections.singletonList(input);
                    }
                };
View Full Code Here

TOP

Related Classes of com.ngdata.hbaseindexer.parse.ByteArrayValueMapper

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.