包 | com.adobe.fiber.runtime.lib |
类 | public class DateTimeFunc |
继承 | DateTimeFunc Object |
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
公共方法
方法 | 由以下参数定义 | ||
---|---|---|---|
createDate(year:int, month:int, day:int, hour:int, minute:int, second:int, millisecond:int = 0):Date [静态]
按本地时区创建日期。 | DateTimeFunc | ||
createDateUTC(year:int, month:int, day:int, hour:int, minute:int, second:int, millisecond:int = 0):Date [静态]
按 UTC 时区创建日期。 | DateTimeFunc | ||
[静态]
为日期添加时间单位。 | DateTimeFunc | ||
[静态]
撷取两个日期,并返回 -1、0 或 1,具体取决于第一个日期是小于、等于还是大于第二个日期。 | DateTimeFunc | ||
[静态]
撷取一个 String 日期部分和两个 Date,返回两个 Date 之间的日期部分的整型数字。 | DateTimeFunc | ||
[静态]
撷取一个 String 日期部分和一个 Date,返回该部分的整型值。 | DateTimeFunc | ||
[静态]
撷取一个 String 日期部分和一个 Date,返回该部分的整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数是星期几的整型值。 | DateTimeFunc | ||
[静态]
返回与输入的日期相对应的一年中的某天。 | DateTimeFunc | ||
[静态]
返回一个月中的天数。 | DateTimeFunc | ||
[静态]
返回指定年中的天数。 | DateTimeFunc | ||
[静态]
返回指定月的第一天的序号(在年中的天编号)。 | DateTimeFunc | ||
[静态]
返回 Date 参数的日整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数的日整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数的时整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数的时整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数的毫秒整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数的毫秒 UTC 整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数的分整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数的分整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数的月整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数的月整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数的季度整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数的秒整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数的秒整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数的年整型值。 | DateTimeFunc | ||
[静态]
返回 Date 参数的年整型值。 | DateTimeFunc | ||
表示对象是否已经定义了指定的属性。 | Object | ||
[静态]
返回布尔值,指示年是否为闰年。 | DateTimeFunc | ||
表示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | ||
[静态]
返回当前日期和时间。 | DateTimeFunc | ||
表示指定的属性是否存在、是否可枚举。 | Object | ||
设置循环操作动态属性的可用性。 | Object | ||
[静态]
返回当前日期和时间(旧)。 | DateTimeFunc | ||
返回此对象的字符串表示形式,其格式设置遵守区域设置特定的约定。 | Object | ||
返回指定对象的字符串表示形式。 | Object | ||
返回指定对象的原始值。 | Object | ||
[静态]
返回与 Date 相对应的一年中的某周。 | DateTimeFunc | ||
[静态]
返回两个日期之间的年数。 | DateTimeFunc |
方法详细信息
createDate | () | 方法 |
public static function createDate(year:int, month:int, day:int, hour:int, minute:int, second:int, millisecond:int = 0):Date
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
按本地时区创建日期。
参数
year:int — 年
| |
month:int — 月
| |
day:int — 日
| |
hour:int — 时
| |
minute:int — 分
| |
second:int — 秒
| |
millisecond:int (default = 0 ) — 毫秒
|
Date — 新日期
|
createDateUTC | () | 方法 |
public static function createDateUTC(year:int, month:int, day:int, hour:int, minute:int, second:int, millisecond:int = 0):Date
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
按 UTC 时区创建日期。
参数
year:int — 年
| |
month:int — 月
| |
day:int — 日
| |
hour:int — 时
| |
minute:int — 分
| |
second:int — 秒
| |
millisecond:int (default = 0 ) — 毫秒
|
Date — 新日期
|
dateAdd | () | 方法 |
public static function dateAdd(part:String, units:int, date:Date):Date
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
为日期添加时间单位。单位如下:
- yyyy:年
- q:季度
- m:月
- y:一年中的某天
- d:日
- w:一周中的某天
- ww:周
- h:时
- n:分
- s:秒
- l:毫秒
参数
part:String — 要添加的单位的类型
| |
units:int — 单位数量
| |
date:Date — Date
|
Date — 新日期;如果日期为 null,则为 null
|
dateCompare | () | 方法 |
public static function dateCompare(date1:Date, date2:Date):int
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
撷取两个日期,并返回 -1、0 或 1,具体取决于第一个日期是小于、等于还是大于第二个日期。
参数
date1:Date — 用于比较的第一个日期
| |
date2:Date — 用于比较的第二个日期
|
int — 整数;如果 date1 < date2,则返回 -1;如果 date1=date2,则返回 0;如果 date1 > date2,则返回 1。如果任一个日期为 null,则返回 0;
|
dateDiff | () | 方法 |
public static function dateDiff(part:String, date1:Date, date2:Date):Number
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
撷取一个 String 日期部分和两个 Date,返回两个 Date 之间的日期部分的整型数字。
参数
part:String — String 有效日期部分
| |
date1:Date — Date 第一个比较日期
| |
date2:Date — Date 第二个比较日期
|
Number — 表示 date1 和 date2 之间的日期部分数目的值。如果任一个日期为 null,则返回 0;
|
引发
Error — 如果部分不正确
|
datePart | () | 方法 |
public static function datePart(part:String, date:Date):int
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
撷取一个 String 日期部分和一个 Date,返回该部分的整型值。
参数
part:String — String 有效日期部分 (yyyy, m, y, d, w, ww, h, n, s)
| |
date:Date — 将返回日期部分的 Date
|
int — 表示指定 Date 的日期部分的值。如果日期为 null,则返回 0。
|
datePartUTC | () | 方法 |
public static function datePartUTC(part:String, date:Date):int
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
撷取一个 String 日期部分和一个 Date,返回该部分的整型值。
参数
part:String — String 有效日期部分 (yyyy, m, y, d, w, ww, h, n, s)
| |
date:Date — 将返回日期部分的 Date
|
int — 表示指定 Date 的日期部分的值。如果日期为 null,则返回 0。
|
dayOfWeek | () | 方法 |
dayOfYear | () | 方法 |
daysInMonth | () | 方法 |
daysInYear | () | 方法 |
firstDayOfMonth | () | 方法 |
getDay | () | 方法 |
getDayUTC | () | 方法 |
getHour | () | 方法 |
getHourUTC | () | 方法 |
getMillisecond | () | 方法 |
getMillisecondUTC | () | 方法 |
getMinute | () | 方法 |
getMinuteUTC | () | 方法 |
getMonth | () | 方法 |
getMonthUTC | () | 方法 |
getQuarter | () | 方法 |
getSecond | () | 方法 |
getSecondUTC | () | 方法 |
getYear | () | 方法 |
getYearUTC | () | 方法 |
isLeapYear | () | 方法 |
now | () | 方法 |
today | () | 方法 |
weekOfYear | () | 方法 |
years | () | 方法 |
Tue Jun 12 2018, 11:04 AM Z