Java DateTimeFormatter getTime(final String time, final DateTimeFormatter formatter)

Here you can find the source of getTime(final String time, final DateTimeFormatter formatter)

Description

get Time

License

Open Source License

Declaration

public static LocalTime getTime(final String time,
            final DateTimeFormatter formatter) 

Method Source Code

//package com.java2s;
/*//from  w ww .ja v  a2s  . co  m
 * #%L
 * HotelAPI Model
 * %%
 * Copyright (C) 2015 - 2016 HOTELBEDS TECHNOLOGY, S.L.U.
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 2.1 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * <http://www.gnu.org/licenses/lgpl-2.1.html>.
 * #L%
 */

import java.time.LocalTime;

import java.time.format.DateTimeFormatter;

public class Main {
    public static LocalTime getTime(final String time,
            final DateTimeFormatter formatter) {
        return time != null ? LocalTime.parse(time, formatter) : null;
    }
}

Related

  1. getParsedTimeOrNull(String timeText, DateTimeFormatter formatForDisplayTime, DateTimeFormatter formatForMenuTimes, ArrayList formatsForParsing, Locale timePickerLocale)
  2. getPreferredDateFormat()
  3. getShortDateManualEntryFormatter()
  4. getShortFormatter(Locale locale)
  5. getStartOfDay(Date dateToFormat)
  6. getTime(String format)
  7. getTimeFromEpochMilli(String value, boolean shortFormat, String errorText)
  8. getTimeStamp(final String dateTimeFormatPattern)
  9. getTimestampedPath(Path baseFile, TemporalAccessor time, DateTimeFormatter formatter)