package openfl.globalization {
/**
 * 	Enumerates constants that determine a locale-specific date and time
 * 	formatting pattern. These constants are used when constructing a
 * 	DateTimeFormatter object or when calling the
 * 	`DateTimeFormatter.setDateTimeStyles()` method.
 * 
 * 	The `CUSTOM` constant cannot be used in the DateTimeFormatter constructor or
 * 	the `DateFormatter.setDateTimeStyles()` method. This constant is instead set
 * 	as the `timeStyle` and `dateStyle` property as a side effect of calling the
 * 	`DateTimeFormatter.setDateTimePattern()` method.
 * 
 * @externs
 */
public class DateTimeStyle {
	public static const CUSTOM:String = "custom";
	public static const LONG:String = "long";
	public static const MEDIUM:String = "medium";
	public static const NONE:String = "none";
	public static const SHORT:String = "short";
}
}
