Packageflash.globalization
Classpublic final class DateTimeNameStyle
InheritanceDateTimeNameStyle Inheritance Object

Language version: ActionScript 3.0
Runtime version: AIR 2

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 settings.

See also

DateTimeFormatter


Public Properties
 PropertyDefined by
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
Public Methods
 MethodDefined by
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Public Constants
 ConstantDefined by
  FULL : String = "full"
[static] Specifies the full form or full name style for month names and weekday names.
DateTimeNameStyle
  LONG_ABBREVIATION : String = "longAbbreviation"
[static] Specifies the long abbreviation style for month names and weekday names.
DateTimeNameStyle
  SHORT_ABBREVIATION : String = "shortAbbreviation"
[static] Specifies the short abbreviation style for month names and weekday names.
DateTimeNameStyle
Constant detail
FULLconstant
public static const FULL:String = "full"

Language version: ActionScript 3.0
Runtime version: AIR 2

Specifies the full form or full name style for month names and weekday names. Examples: Tuesday, November.

LONG_ABBREVIATIONconstant 
public static const LONG_ABBREVIATION:String = "longAbbreviation"

Language version: ActionScript 3.0
Runtime version: AIR 2

Specifies the long abbreviation style for month names and weekday names. Examples: Tues for Tuesday, Nov for November.

SHORT_ABBREVIATIONconstant 
public static const SHORT_ABBREVIATION:String = "shortAbbreviation"

Language version: ActionScript 3.0
Runtime version: AIR 2

Specifies the short abbreviation style for month names and weekday names. Examples: T for Tuesday, N for November.