Package com.asakusafw.runtime.value

Examples of com.asakusafw.runtime.value.ValueOption


    public final Object copyObject(Object o) {
        ValueOption<?> object = (ValueOption<?>) o;
        if (object == null || object.isNull()) {
            return null;
        }
        ValueOption copy = newObject();
        copy.copyFrom(object);
        return copy;
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.runtime.value.ValueOption

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.