Package com.asakusafw.directio.hive.serde

Examples of com.asakusafw.directio.hive.serde.ValueSerdeFactory


    public static TypeInfo getNaturalTypeInfo(PropertyDeclaration property) {
        if ((property.getType() instanceof BasicType) == false) {
            return TypeInfoFactory.unknownTypeInfo;
        }
        Class<?> valueClass = EmitContext.getFieldTypeAsClass(property);
        ValueSerdeFactory serde = ValueSerdeFactory.fromClass(valueClass);
        return serde.getTypeInfo();
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.directio.hive.serde.ValueSerdeFactory

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.