Java Code Examples for sun.util.calendar.ZoneInfo#getAvailableIDs()

The following examples show how to use sun.util.calendar.ZoneInfo#getAvailableIDs() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TimeZone.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets the available IDs according to the given time zone offset in milliseconds.
 *
 * @param rawOffset the given time zone GMT offset in milliseconds.
 * @return an array of IDs, where the time zone for that ID has
 * the specified GMT offset. For example, "America/Phoenix" and "America/Denver"
 * both have GMT-07:00, but differ in daylight saving behavior.
 * @see #getRawOffset()
 */
public static synchronized String[] getAvailableIDs(int rawOffset) {
    return ZoneInfo.getAvailableIDs(rawOffset);
}
 
Example 2
Source File: TimeZone.java    From jdk8u-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets all the available IDs supported.
 * @return an array of IDs.
 */
public static synchronized String[] getAvailableIDs() {
    return ZoneInfo.getAvailableIDs();
}
 
Example 3
Source File: TimeZone.java    From jdk8u-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets the available IDs according to the given time zone offset in milliseconds.
 *
 * @param rawOffset the given time zone GMT offset in milliseconds.
 * @return an array of IDs, where the time zone for that ID has
 * the specified GMT offset. For example, "America/Phoenix" and "America/Denver"
 * both have GMT-07:00, but differ in daylight saving behavior.
 * @see #getRawOffset()
 */
public static synchronized String[] getAvailableIDs(int rawOffset) {
    return ZoneInfo.getAvailableIDs(rawOffset);
}
 
Example 4
Source File: TimeZone.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets all the available IDs supported.
 * @return an array of IDs.
 */
public static synchronized String[] getAvailableIDs() {
    return ZoneInfo.getAvailableIDs();
}
 
Example 5
Source File: TimeZone.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets all the available IDs supported.
 * @return an array of IDs.
 */
public static synchronized String[] getAvailableIDs() {
    return ZoneInfo.getAvailableIDs();
}
 
Example 6
Source File: TimeZone.java    From Java8CN with Apache License 2.0 2 votes vote down vote up
/**
 * Gets all the available IDs supported.
 * @return an array of IDs.
 */
public static synchronized String[] getAvailableIDs() {
    return ZoneInfo.getAvailableIDs();
}
 
Example 7
Source File: TimeZone.java    From Bytecoder with Apache License 2.0 2 votes vote down vote up
/**
 * Gets the available IDs according to the given time zone offset in milliseconds.
 *
 * @param rawOffset the given time zone GMT offset in milliseconds.
 * @return an array of IDs, where the time zone for that ID has
 * the specified GMT offset. For example, "America/Phoenix" and "America/Denver"
 * both have GMT-07:00, but differ in daylight saving behavior.
 * @see #getRawOffset()
 */
public static synchronized String[] getAvailableIDs(int rawOffset) {
    return ZoneInfo.getAvailableIDs(rawOffset);
}
 
Example 8
Source File: TimeZone.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets all the available IDs supported.
 * @return an array of IDs.
 */
public static synchronized String[] getAvailableIDs() {
    return ZoneInfo.getAvailableIDs();
}
 
Example 9
Source File: TimeZone.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets all the available IDs supported.
 * @return an array of IDs.
 */
public static synchronized String[] getAvailableIDs() {
    return ZoneInfo.getAvailableIDs();
}
 
Example 10
Source File: TimeZone.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets all the available IDs supported.
 * @return an array of IDs.
 */
public static synchronized String[] getAvailableIDs() {
    return ZoneInfo.getAvailableIDs();
}
 
Example 11
Source File: TimeZone.java    From jdk8u-dev-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets all the available IDs supported.
 * @return an array of IDs.
 */
public static synchronized String[] getAvailableIDs() {
    return ZoneInfo.getAvailableIDs();
}
 
Example 12
Source File: TimeZone.java    From JDKSourceCode1.8 with MIT License 2 votes vote down vote up
/**
 * Gets all the available IDs supported.
 * @return an array of IDs.
 */
public static synchronized String[] getAvailableIDs() {
    return ZoneInfo.getAvailableIDs();
}
 
Example 13
Source File: TimeZone.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets all the available IDs supported.
 * @return an array of IDs.
 */
public static synchronized String[] getAvailableIDs() {
    return ZoneInfo.getAvailableIDs();
}
 
Example 14
Source File: TimeZone.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets the available IDs according to the given time zone offset in milliseconds.
 *
 * @param rawOffset the given time zone GMT offset in milliseconds.
 * @return an array of IDs, where the time zone for that ID has
 * the specified GMT offset. For example, "America/Phoenix" and "America/Denver"
 * both have GMT-07:00, but differ in daylight saving behavior.
 * @see #getRawOffset()
 */
public static synchronized String[] getAvailableIDs(int rawOffset) {
    return ZoneInfo.getAvailableIDs(rawOffset);
}
 
Example 15
Source File: TimeZone.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets the available IDs according to the given time zone offset in milliseconds.
 *
 * @param rawOffset the given time zone GMT offset in milliseconds.
 * @return an array of IDs, where the time zone for that ID has
 * the specified GMT offset. For example, "America/Phoenix" and "America/Denver"
 * both have GMT-07:00, but differ in daylight saving behavior.
 * @see #getRawOffset()
 */
public static synchronized String[] getAvailableIDs(int rawOffset) {
    return ZoneInfo.getAvailableIDs(rawOffset);
}
 
Example 16
Source File: TimeZone.java    From TencentKona-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets all the available IDs supported.
 * @return an array of IDs.
 */
public static synchronized String[] getAvailableIDs() {
    return ZoneInfo.getAvailableIDs();
}
 
Example 17
Source File: TimeZone.java    From TencentKona-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets the available IDs according to the given time zone offset in milliseconds.
 *
 * @param rawOffset the given time zone GMT offset in milliseconds.
 * @return an array of IDs, where the time zone for that ID has
 * the specified GMT offset. For example, "America/Phoenix" and "America/Denver"
 * both have GMT-07:00, but differ in daylight saving behavior.
 * @see #getRawOffset()
 */
public static synchronized String[] getAvailableIDs(int rawOffset) {
    return ZoneInfo.getAvailableIDs(rawOffset);
}
 
Example 18
Source File: TimeZone.java    From jdk8u-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets the available IDs according to the given time zone offset in milliseconds.
 *
 * @param rawOffset the given time zone GMT offset in milliseconds.
 * @return an array of IDs, where the time zone for that ID has
 * the specified GMT offset. For example, "America/Phoenix" and "America/Denver"
 * both have GMT-07:00, but differ in daylight saving behavior.
 * @see #getRawOffset()
 */
public static synchronized String[] getAvailableIDs(int rawOffset) {
    return ZoneInfo.getAvailableIDs(rawOffset);
}
 
Example 19
Source File: TimeZone.java    From jdk-1.7-annotated with Apache License 2.0 2 votes vote down vote up
/**
 * Gets the available IDs according to the given time zone offset in milliseconds.
 *
 * @param rawOffset the given time zone GMT offset in milliseconds.
 * @return an array of IDs, where the time zone for that ID has
 * the specified GMT offset. For example, "America/Phoenix" and "America/Denver"
 * both have GMT-07:00, but differ in daylight saving behavior.
 * @see #getRawOffset()
 */
public static synchronized String[] getAvailableIDs(int rawOffset) {
    return ZoneInfo.getAvailableIDs(rawOffset);
}
 
Example 20
Source File: TimeZone.java    From jdk8u-dev-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Gets the available IDs according to the given time zone offset in milliseconds.
 *
 * @param rawOffset the given time zone GMT offset in milliseconds.
 * @return an array of IDs, where the time zone for that ID has
 * the specified GMT offset. For example, "America/Phoenix" and "America/Denver"
 * both have GMT-07:00, but differ in daylight saving behavior.
 * @see #getRawOffset()
 */
public static synchronized String[] getAvailableIDs(int rawOffset) {
    return ZoneInfo.getAvailableIDs(rawOffset);
}