Java ZoneId getDefaultTimeZone()

Here you can find the source of getDefaultTimeZone()

Description

get Default Time Zone

License

Apache License

Declaration

private static ZoneId getDefaultTimeZone() 

Method Source Code

//package com.java2s;
/*/*from   w  w  w .j a v a  2s  .c o m*/
 * Copyright (c) 2008-2018 Haulmont.
 *
 * 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;

public class Main {
    private static ZoneId getDefaultTimeZone() {
        // TODO: gg, return proper ZoneId
        return ZoneId.systemDefault();
    }
}

Related

  1. determineTimeZoneId(String zoneId)
  2. fromEpochMilliseconds(final Long fromEpoch)
  3. getDefaultZoneId()
  4. getDefaultZoneId()
  5. getRequestTimeZone(String timestamp)
  6. getTimezone(String tzid)