Package org.jitterbit.util.time

Examples of org.jitterbit.util.time.Duration


     * @return a <code>Duration</code> instance, or <code>null</code> if this operation has not
     *         completed yet.
     */
    public Duration getDuration() {
        if (startTime != null && status.isDone()) {
            return new Duration(startTime, statusTime);
        }
        return null;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.util.time.Duration

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.