Packagemx.formatters
Classpublic class DateBase
InheritanceDateBase Inheritance Object

The DateBase class contains the localized string information used by the mx.formatters.DateFormatter class and the parsing function that renders the pattern. This is a helper class for the DateFormatter class that is not usually used independently.

See also

mx.formatters.DateFormatter


Public Properties
 PropertyDefined By
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  dayNamesLong : Array
[static] Long format of day names.
DateBase
  dayNamesShort : Array
[static] Short format of day names.
DateBase
  monthNamesLong : Array
[static] Long format of month names.
DateBase
  monthNamesShort : Array
[static] Short format of month names.
DateBase
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
  timeOfDay : Array
[static] Time of day names.
DateBase
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
Property Detail
dayNamesLongproperty
dayNamesLong:Array

Long format of day names.

The default value is [Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"].



Implementation
    public static function get dayNamesLong():Array
    public function set dayNamesLong(value:Array):void
dayNamesShortproperty 
dayNamesShort:Array

Short format of day names.

The default value is ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"].



Implementation
    public static function get dayNamesShort():Array
    public function set dayNamesShort(value:Array):void
monthNamesLongproperty 
monthNamesLong:Array

Long format of month names.

The default value is ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]..



Implementation
    public static function get monthNamesLong():Array
    public function set monthNamesLong(value:Array):void
monthNamesShortproperty 
monthNamesShort:Array

Short format of month names.

The default value is ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct","Nov", "Dec"].



Implementation
    public static function get monthNamesShort():Array
    public function set monthNamesShort(value:Array):void
timeOfDayproperty 
timeOfDay:Array

Time of day names.

The default value is ["AM", "PM"].



Implementation
    public static function get timeOfDay():Array
    public function set timeOfDay(value:Array):void