All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.text.DateFormatSymbols Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.

There is a newer version: 0.6.8
Show newest version
package java.text;

import java.io.Serializable;
import java.util.Locale;

public class DateFormatSymbols implements Serializable, Cloneable {
	public DateFormatSymbols() {

	}

	public DateFormatSymbols(Locale locale) {

	}

	native public static Locale[] getAvailableLocales();

	native public static final DateFormatSymbols getInstance();

	native public static final DateFormatSymbols getInstance(Locale locale);

	native public String[] getEras();

	native public void setEras(String[] newEras);

	native public String[] getMonths();

	native public void setMonths(String[] newMonths);

	native public String[] getShortMonths();

	native public void setShortMonths(String[] newShortMonths);

	native public String[] getWeekdays();

	native public void setWeekdays(String[] newWeekdays);

	native public String[] getShortWeekdays();

	native public void setShortWeekdays(String[] newShortWeekdays);

	native public String[] getAmPmStrings();

	native public void setAmPmStrings(String[] newAmpms);

	native public String[][] getZoneStrings();

	native public void setZoneStrings(String[][] newZoneStrings);

	native public String getLocalPatternChars();

	native public void setLocalPatternChars(String newLocalPatternChars);

	native public Object clone();

	@Override
	native public int hashCode();

	native public boolean equals(Object obj);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy