Java ZonedDateTime Calculate mapToZonedDateTime(final Date date)

Here you can find the source of mapToZonedDateTime(final Date date)

Description

Converts a Date into a ZonedDateTime .

License

Apache License

Parameter

Parameter Description
date the input time (can be null

Return

the appropriate zoned time object (or null if the inpt time was null )

Declaration

public static ZonedDateTime mapToZonedDateTime(final Date date) 

Method Source Code


//package com.java2s;
/*//from  w  ww  . ja  v a  2s.c o  m
 * Copyright 2017 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.time.ZoneId;
import java.time.ZonedDateTime;

import java.util.Date;

public class Main {
    /**
     * Converts a {@link Date} into a {@link ZonedDateTime}.
     *
     * @param date the input time (can be {@code null}
     * @return the appropriate zoned time object (or {@code null} if the inpt time was {@code null})
     */
    public static ZonedDateTime mapToZonedDateTime(final Date date) {
        if (date == null) {
            return null;
        }
        return ZonedDateTime.ofInstant(date.toInstant(), ZoneId.systemDefault());
    }
}

Related

  1. getTimePath(Path dir, String ext, ZonedDateTime dateTime)
  2. getZonedDateTimeForComparison(TimeZone zone)
  3. holidaysInRange(ZonedDateTime startDate, ZonedDateTime endDate, List holidays)
  4. isBetweenTimesInclusive(ZonedDateTime dateTime, ZonedDateTime startDateTime, ZonedDateTime endDateTime)
  5. isoDateTime(ZonedDateTime zonedDateTime)
  6. max(ZonedDateTime a, ZonedDateTime b)
  7. oneDayLater(ZonedDateTime baseDate)
  8. parseZdtToDate(ZonedDateTime zdt)
  9. parseZonedDateTime(String zonedDateTimeString, String variableName)