Package com.asakusafw.runtime.value

Examples of com.asakusafw.runtime.value.ValueOption.copyFrom()


        ValueOption<?> object = (ValueOption<?>) o;
        if (object == null || object.isNull()) {
            return null;
        }
        ValueOption copy = newObject();
        copy.copyFrom(object);
        return copy;
    }

    /**
     * Creates a new instance for supported {@link ValueOption} type.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.