Package org.jitterbit.util.time

Examples of org.jitterbit.util.time.DateBuilder


                setLastNHours();
            }
        }

        private void setToday() {
            Date start = new DateBuilder().midnight().getDate();
            setStartAndEndDates(start, null);
        }
View Full Code Here


        private void setLastNDays() {
            Integer daysBack = getDaysBack();
            if (daysBack == null) {
                return;
            }
            Date start = new DateBuilder().addDays(-(daysBack - 1)).midnight().getDate();
            setStartAndEndDates(start, null);
        }
View Full Code Here

        private void setLastNHours() {
            Integer hoursBack = getHoursBack();
            if (hoursBack == null) {
                return;
            }
            Date start = new DateBuilder().addHours(-hoursBack).getDate();
            setStartAndEndDates(start, null);
        }
View Full Code Here

TOP

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

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.