java.util.TimeZone Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cldc-1.1-stub Show documentation
Show all versions of cldc-1.1-stub Show documentation
Stub of the Connected Limited Device Configuration v1.1
package java.util;
public abstract class TimeZone {
public static String[] getAvailableIDs() {
return null;
}
public static TimeZone getDefault() {
return null;
}
public static TimeZone getTimeZone(String ID) {
return null;
}
public TimeZone() {}
public String getID() {
return null;
}
/**
* @throws IllegalArgumentException
*/
public abstract int getOffset(int era, int year, int month, int day, int dayOfWeek, int millis);
public abstract int getRawOffset();
public abstract boolean useDaylightTime();
}