Paket | com.adobe.fiber.runtime.lib |
Sınıf | public class DateTimeFunc |
Miras Alma | DateTimeFunc Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Yöntem | Tanımlayan: | ||
---|---|---|---|
createDate(year:int, month:int, day:int, hour:int, minute:int, second:int, millisecond:int = 0):Date [statik]
Creates a date in the local timezone. | DateTimeFunc | ||
createDateUTC(year:int, month:int, day:int, hour:int, minute:int, second:int, millisecond:int = 0):Date [statik]
Creates a date in the UTC timezone. | DateTimeFunc | ||
[statik]
Adds units of time to a date. | DateTimeFunc | ||
[statik]
Takes two dates and returns -1, 0, or 1 depending on whether the first is smaller, equal or larger than the second. | DateTimeFunc | ||
[statik]
Takes a String datepart and two Dates and returns an int number of dateparts between the two Dates. | DateTimeFunc | ||
[statik]
Takes a String datepart and a Date and it returns the int value of that part. | DateTimeFunc | ||
[statik]
Takes a String datepart and a Date and it returns the int value of that part. | DateTimeFunc | ||
[statik]
Returns the int day of week value of a Date param. | DateTimeFunc | ||
[statik]
Returns the day of year corresponding to a date input. | DateTimeFunc | ||
[statik]
Returns the number of days in a month. | DateTimeFunc | ||
[statik]
Returns the number of days in a given year. | DateTimeFunc | ||
[statik]
Returns the ordinal (the day's number in the year) for the first day of the specified month. | DateTimeFunc | ||
[statik]
Returns the int day value of a Date param. | DateTimeFunc | ||
[statik]
Returns the int day value of a Date param. | DateTimeFunc | ||
[statik]
Returns the int hour value of a Date param. | DateTimeFunc | ||
[statik]
Returns the int hour value of a Date param. | DateTimeFunc | ||
[statik]
Returns the int millisecond value of a Date param. | DateTimeFunc | ||
[statik]
Returns the int millisecond UTC value of a Date param. | DateTimeFunc | ||
[statik]
Returns the int minute value of a Date param. | DateTimeFunc | ||
[statik]
Returns the int minute value of a Date param. | DateTimeFunc | ||
[statik]
Returns the int month value of a Date param. | DateTimeFunc | ||
[statik]
Returns the int month value of a Date param. | DateTimeFunc | ||
[statik]
Returns the int quarter value of a Date param. | DateTimeFunc | ||
[statik]
Returns the int second value of a Date param. | DateTimeFunc | ||
[statik]
Returns the int second value of a Date param. | DateTimeFunc | ||
[statik]
Returns the int year value of a Date param. | DateTimeFunc | ||
[statik]
Returns int year value of a Date param. | DateTimeFunc | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
[statik]
Returns a boolean indicating whether a year is a leap year or not. | DateTimeFunc | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
[statik]
Returns the current date and time. | DateTimeFunc | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
[statik]
Returns the current date and time (legacy). | DateTimeFunc | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
Belirtilen nesnenin temel değerini döndürür. | Object | ||
[statik]
Returns the week of the year for a Date. | DateTimeFunc | ||
[statik]
Returns the number of years between two dates. | DateTimeFunc |
createDate | () | yöntem |
public static function createDate(year:int, month:int, day:int, hour:int, minute:int, second:int, millisecond:int = 0):Date
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Creates a date in the local timezone.
Parametreler
year:int — year
| |
month:int — month
| |
day:int — day
| |
hour:int — hour
| |
minute:int — minute
| |
second:int — second
| |
millisecond:int (default = 0 ) — Millisecond
|
Date — a new date
|
createDateUTC | () | yöntem |
public static function createDateUTC(year:int, month:int, day:int, hour:int, minute:int, second:int, millisecond:int = 0):Date
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Creates a date in the UTC timezone.
Parametreler
year:int — Year
| |
month:int — Month
| |
day:int — Day
| |
hour:int — Hour
| |
minute:int — Minute
| |
second:int — Second
| |
millisecond:int (default = 0 ) — Millisecond
|
Date — New date
|
dateAdd | () | yöntem |
public static function dateAdd(part:String, units:int, date:Date):Date
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Adds units of time to a date. Units are:
- yyyy: Year
- q: Quarter
- m: Month
- y: Day of year
- d: Day
- w: Weekday
- ww: Week
- h: Hour
- n: Minute
- s: Second
- l: Millisecond
Parametreler
part:String — Type of units to add
| |
units:int — Number of units
| |
date:Date — Date
|
Date — New date; null if date is null
|
dateCompare | () | yöntem |
public static function dateCompare(date1:Date, date2:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Takes two dates and returns -1, 0, or 1 depending on whether the first is smaller, equal or larger than the second.
Parametreler
date1:Date — First date for comparison
| |
date2:Date — Second date for comparison
|
int — int; -1 if date1 < date2, 0 if date1=date2, 1 if date1 > date2.
Returns 0 if either date is null;
|
dateDiff | () | yöntem |
public static function dateDiff(part:String, date1:Date, date2:Date):Number
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Takes a String datepart and two Dates and returns an int number of dateparts between the two Dates.
Parametreler
part:String — String valid datepart
| |
date1:Date — Date first comparison date
| |
date2:Date — Date second comparison date
|
Number — Value representing number of dateparts between date1 and date2.
Returns zero if either date is null;
|
Atar
Error — if bad part
|
datePart | () | yöntem |
public static function datePart(part:String, date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Takes a String datepart and a Date and it returns the int value of that part.
Parametreler
part:String — String valid date part (yyyy, m, y, d, w, ww, h, n, s)
| |
date:Date — Date for which part should be returned
|
int — Value representing datepart for given Date. Returns zero if date is null.
|
datePartUTC | () | yöntem |
public static function datePartUTC(part:String, date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Takes a String datepart and a Date and it returns the int value of that part.
Parametreler
part:String — String valid date part (yyyy, m, y, d, w, ww, h, n, s)
| |
date:Date — Date for which part should be returned
|
int — Value representing datepart for given Date. Returns zero if date is null.
|
dayOfWeek | () | yöntem |
public static function dayOfWeek(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int day of week value of a Date param.
Parametreler
date:Date — Date for which day of week will be returned
|
int — Day of week of input date. Returns -1 if date is null.
|
dayOfYear | () | yöntem |
public static function dayOfYear(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the day of year corresponding to a date input.
Parametreler
date:Date — Date for which day of year will be returned
|
int — Day of year corresponding to date input. Returns -1 if date is null.
|
daysInMonth | () | yöntem |
public static function daysInMonth(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the number of days in a month.
Parametreler
date:Date — Date for which number of days in month will be returned
|
int — Number of days in this month. Returns zero if date is null.
|
daysInYear | () | yöntem |
public static function daysInYear(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the number of days in a given year.
Parametreler
date:Date — Date for which number of days in year will be returned
|
int — Number of days this year. Returns zero if date is null.
|
firstDayOfMonth | () | yöntem |
public static function firstDayOfMonth(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the ordinal (the day's number in the year) for the first day of the specified month.
Parametreler
date:Date — Date for which first day of month will be returned
|
int — Ordinal for the first day of month param. Returns zero if date is null.
|
getDay | () | yöntem |
public static function getDay(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int day value of a Date param.
Parametreler
date:Date — Date for which day will be returned
|
int — Day of input date. Returns zero if date is null.
|
getDayUTC | () | yöntem |
public static function getDayUTC(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int day value of a Date param.
Parametreler
date:Date — Date for which day will be returned
|
int — Day of input date. Returns zero if date is null.
|
getHour | () | yöntem |
public static function getHour(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int hour value of a Date param.
Parametreler
date:Date — Date for which hour will be returned
|
int — Hour of input date. Returns -1 if date is null.
|
getHourUTC | () | yöntem |
public static function getHourUTC(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int hour value of a Date param.
Parametreler
date:Date — Date for which hour will be returned
|
int — Hour of input date. Returns -1 if date is null.
|
getMillisecond | () | yöntem |
public static function getMillisecond(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int millisecond value of a Date param.
Parametreler
date:Date — Date for which second will be returned
|
int — Millisecond of input date. Returns -1 if date is null.
|
getMillisecondUTC | () | yöntem |
public static function getMillisecondUTC(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int millisecond UTC value of a Date param.
Parametreler
date:Date — Date for which second will be returned
|
int — Millisecond UTC of input date. Returns -1 if date is null.
|
getMinute | () | yöntem |
public static function getMinute(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int minute value of a Date param.
Parametreler
date:Date — Date for which minute will be returned
|
int — Minute of input date. Returns -1 if date is null.
|
getMinuteUTC | () | yöntem |
public static function getMinuteUTC(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int minute value of a Date param.
Parametreler
date:Date — Date for which minute will be returned
|
int — Minute of input date. Return -1 if date is null.
|
getMonth | () | yöntem |
public static function getMonth(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int month value of a Date param.
Parametreler
date:Date — Date for which month will be returned
|
int — Month of input date. Returns 0 if date is null.
|
getMonthUTC | () | yöntem |
public static function getMonthUTC(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int month value of a Date param.
Parametreler
date:Date — Date for which month will be returned
|
int — month of input date. Returns 0 if date is null.
|
getQuarter | () | yöntem |
public static function getQuarter(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int quarter value of a Date param.
Parametreler
date:Date — Date for which quarter will be returned
|
int — Quarter of input date (1-4). Returns 0 if date is null.
|
getSecond | () | yöntem |
public static function getSecond(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int second value of a Date param.
Parametreler
date:Date — Date for which second will be returned
|
int — Second of input date. Returns -1 if date is null.
|
getSecondUTC | () | yöntem |
public static function getSecondUTC(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int second value of a Date param.
Parametreler
date:Date — Date for which second will be returned
|
int — Second of input date. Returns -1 if date is null.
|
getYear | () | yöntem |
public static function getYear(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the int year value of a Date param.
Parametreler
date:Date — Date for which Year will be returned
|
int — Year of input date. Returns zero if date is null.
|
getYearUTC | () | yöntem |
public static function getYearUTC(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns int year value of a Date param.
Parametreler
date:Date — Date for which Year will be returned
|
int — Year of input date. Returns zero if date is null.
|
isLeapYear | () | yöntem |
public static function isLeapYear(year:int):Boolean
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns a boolean indicating whether a year is a leap year or not. Differ in logic in years before 1582 (follow Java calendar class).
Parametreler
year:int — int year
|
Boolean — Boolean indicating whether year is a leap year
|
now | () | yöntem |
today | () | yöntem |
weekOfYear | () | yöntem |
public static function weekOfYear(date:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the week of the year for a Date.
Parametreler
date:Date — Date
|
int — Week of the year. Returns zero if date is null.
|
years | () | yöntem |
public static function years(endDate:Date, startDate:Date):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the number of years between two dates.
Parametreler
endDate:Date — End date
| |
startDate:Date — Starting date
|
int — Numbers of years between the start and end dates.
Returns -1 if either date is null.
|
Tue Jun 12 2018, 01:09 PM Z