Package javax.time.calendar

Examples of javax.time.calendar.LocalTime


        ParsePosition pp = new ParsePosition(pos);
        DateTimeParseContext cal = f.parse(str, pp);
        if (pp.getErrorIndex() >= 0) {
            throw new IllegalArgumentException(str);
        }
        LocalTime time = cal.toCalendricalMerger().merge().get(LocalTime.rule());
        int secs = time.getHourOfDay() * 60 * 60 +
                time.getMinuteOfHour() * 60 + time.getSecondOfMinute();
        if (pos == 1) {
            secs = -secs;
        }
        return secs;
    }
View Full Code Here

TOP

Related Classes of javax.time.calendar.LocalTime

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.