| Package | vegas.date |
| Class | public class Month |
| Inheritance | Month Object |
| Property | Defined By | ||
|---|---|---|---|
| APRIL : String = April [static]
Fully written out string for april. | Month | ||
| AUGUST : String = August [static]
Fully written out string for august. | Month | ||
| DECEMBER : String = December [static]
Fully written out string for december. | Month | ||
| FEBRUARY : String = February [static]
Fully written out string for february. | Month | ||
| JANUARY : String = January [static]
Fully written out string for january. | Month | ||
| JULY : String = July [static]
Fully written out string for july. | Month | ||
| JUNE : String = June [static]
Fully written out string for june. | Month | ||
| MARCH : String = March [static]
Fully written out string for march. | Month | ||
| MAY : String = May [static]
Fully written out string for may. | Month | ||
| NOVEMBER : String = November [static]
Fully written out string for november. | Month | ||
| OCTOBER : String = October [static]
Fully written out string for october. | Month | ||
| SEPTEMBER : String = September [static]
Fully written out string for september. | Month | ||
| Method | Defined By | ||
|---|---|---|---|
getMonths():Array [static]
Returns the array representation of all months constants. | Month | ||
| APRIL | property |
public static var APRIL:String = AprilFully written out string for april.
| AUGUST | property |
public static var AUGUST:String = AugustFully written out string for august.
| DECEMBER | property |
public static var DECEMBER:String = DecemberFully written out string for december.
| FEBRUARY | property |
public static var FEBRUARY:String = FebruaryFully written out string for february.
| JANUARY | property |
public static var JANUARY:String = JanuaryFully written out string for january.
| JULY | property |
public static var JULY:String = JulyFully written out string for july.
| JUNE | property |
public static var JUNE:String = JuneFully written out string for june.
| MARCH | property |
public static var MARCH:String = MarchFully written out string for march.
| MAY | property |
public static var MAY:String = MayFully written out string for may.
| NOVEMBER | property |
public static var NOVEMBER:String = NovemberFully written out string for november.
| OCTOBER | property |
public static var OCTOBER:String = OctoberFully written out string for october.
| SEPTEMBER | property |
public static var SEPTEMBER:String = SeptemberFully written out string for september.
| getMonths | () | method |
public static function getMonths():ArrayReturns the array representation of all months constants.
Example :
trace( "days : " + Month.getMonths() ) ;
ReturnsArray — the array representation of all months constants.
|