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


Java TimeZoneNames类代码示例

本文整理汇总了Java中libcore.icu.TimeZoneNames的典型用法代码示例。如果您正苦于以下问题:Java TimeZoneNames类的具体用法?Java TimeZoneNames怎么用?Java TimeZoneNames使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: internalZoneStrings

import libcore.icu.TimeZoneNames; //导入依赖的package包/类
/**
 * Gets zone strings, initializing them if necessary. Does not create
 * a defensive copy, so make sure you do so before exposing the returned
 * arrays to clients.
 */
synchronized String[][] internalZoneStrings() {
    if (zoneStrings == null) {
        zoneStrings = TimeZoneNames.getZoneStrings(locale);
    }
    return zoneStrings;
}
 
开发者ID:Sellegit,项目名称:j2objc,代码行数:12,代码来源:DateFormatSymbols.java

示例2: getTimeZoneDisplayName

import libcore.icu.TimeZoneNames; //导入依赖的package包/类
/**
 * Returns the display name of the timezone specified. Returns null if no name was found in the
 * zone strings.
 *
 * @param daylight whether to return the daylight savings or the standard name
 * @param style one of the {@link TimeZone} styles such as {@link TimeZone#SHORT}
 *
 * @hide used internally
 */
String getTimeZoneDisplayName(TimeZone tz, boolean daylight, int style) {
    if (style != TimeZone.SHORT && style != TimeZone.LONG) {
        throw new IllegalArgumentException("Bad style: " + style);
    }

    // If custom zone strings have been set with setZoneStrings() we use those. Otherwise we
    // use the ones from LocaleData.
    String[][] zoneStrings = internalZoneStrings();
    return TimeZoneNames.getDisplayName(zoneStrings, tz.getID(), daylight, style);
}
 
开发者ID:Sellegit,项目名称:j2objc,代码行数:20,代码来源:DateFormatSymbols.java


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