package openfl.globalization {
/**
 * 	The DateTimeNameStyle class enumerates constants that control the length of
 * 	the month names and weekday names that are used when formatting dates. Use
 * 	these constants for the `nameStyle` parameter of the DateTimeFormatter
 * 	`getMonthNames()` and `getWeekDayNames()` methods.
 * 
 * 	The `LONG_ABBREVIATION` and `SHORT_ABBREVIATION` may be the same or
 * 	different depending on the operating system and browser settings.
 * 
 * @externs
 */
public class DateTimeNameStyle {
	public static const FULL:String = "full";
	public static const LONG_ABBREVIATION:String = "longAbbreviation";
	public static const SHORT_ABBREVIATION:String = "shortAbbreviation";
}
}
