当前位置: 首页>>代码示例>>Java>>正文


Java SimpleTimeZone.inDaylightTime方法代码示例

本文整理汇总了Java中java.util.SimpleTimeZone.inDaylightTime方法的典型用法代码示例。如果您正苦于以下问题:Java SimpleTimeZone.inDaylightTime方法的具体用法?Java SimpleTimeZone.inDaylightTime怎么用?Java SimpleTimeZone.inDaylightTime使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.util.SimpleTimeZone的用法示例。


在下文中一共展示了SimpleTimeZone.inDaylightTime方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: inDaylightTime

import java.util.SimpleTimeZone; //导入方法依赖的package包/类
/**
 * Queries if the specified date is in Daylight Saving Time.
 */
public boolean inDaylightTime(Date date) {
    if (date == null) {
        throw new NullPointerException();
    }

    if (transitions == null) {
        return false;
    }

    long utc = date.getTime() - rawOffsetDiff;
    int index = getTransitionIndex(utc, UTC_TIME);

    // before transitions in the transition table
    if (index < 0) {
        return false;
    }

    // the time is in the table range.
    if (index < transitions.length) {
        return (transitions[index] & DST_MASK) != 0;
    }

    // beyond the transition table
    SimpleTimeZone tz = getLastRule();
    if (tz != null) {
        return tz.inDaylightTime(date);
   }
    return false;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:33,代码来源:ZoneInfo.java

示例2: inDaylightTime

import java.util.SimpleTimeZone; //导入方法依赖的package包/类
/**
 * Queries if the specified date is in Daylight Saving Time.
 */
public boolean inDaylightTime(Date date) {
    if (date == null) {
        throw new NullPointerException();
    }

    if (transitions == null) {
        return false;
    }

    long utc = date.getTime() - rawOffsetDiff;
    int index = getTransitionIndex(utc, UTC_TIME);

    // before transitions in the transition table
    if (index < 0) {
        return false;
    }

    // the time is in the table range.
    if (index < transitions.length) {
        return (transitions[index] & DST_MASK) != 0;
    }

    // beyond the transition table
    SimpleTimeZone tz = getLastRule();
    if (tz != null) {
        return tz.inDaylightTime(date);
    }
    return false;
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:33,代码来源:ZoneInfoOld.java

示例3: test_clone_SimpleTimeZone

import java.util.SimpleTimeZone; //导入方法依赖的package包/类
public void test_clone_SimpleTimeZone() {
    SimpleTimeZone stz = new SimpleTimeZone(21600000, "Central Standard Time");
    stz.setStartYear(1000);
    stz.inDaylightTime(new Date());
    stz.clone();
}
 
开发者ID:keplersj,项目名称:In-the-Box-Fork,代码行数:7,代码来源:TimeZoneTest.java


注:本文中的java.util.SimpleTimeZone.inDaylightTime方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。