com.aspose.cells.DateTime.html Maven / Gradle / Ivy
DateTime
com.aspose.cells
Class DateTime
java.lang.Object
com.aspose.cells.DateTime
- All Implemented Interfaces:
- java.lang.Comparable
public class DateTime
- extends java.lang.Object
Constructor Summary |
---|
DateTime(int year, int month, int day)
Initializes a new instance of the DateTime object to the specified year, month, and day. |
DateTime(int year, int month, int day, int hour, int minute, int second)
Initializes a new instance of the DateTime object to the specified year, month, day, hour, minute, and second. |
DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond)
Initializes a new instance of the DateTime object to the specified year, month, day, hour, minute, second, and millisecond. |
DateTime(java.util.Date date)
Initializes a new instance of the DateTime object to the specified Date object |
DateTime(java.util.Calendar cld)
Initializes a new instance of the DateTime object to the specified Calendar object |
Method Summary | ||
---|---|---|
DateTime | addDays(double value) | |
Adds the specified number of days to the value of this instance. | ||
DateTime | addHours(double value) | |
Adds the specified number of hours to the value of this instance. | ||
DateTime | addMilliseconds(double value) | |
Adds the specified number of milliseconds to the value of this instance. | ||
DateTime | addMinutes(double value) | |
Adds the specified number of minutes to the value of this instance. | ||
DateTime | addMonths(int months) | |
Adds the specified number of months to the value of this instance. | ||
DateTime | addSeconds(double value) | |
Adds the specified number of seconds to the value of this instance. | ||
DateTime | addYears(int value) | |
Adds the specified number of years to the value of this instance. | ||
int | compareTo(DateTime value) | |
Compares the value of this instance to a specified DateTime value and returns an integer that indicates whether this instance is earlier than, the same as, or later than the specified DateTime value. | ||
int | compareTo(java.lang.Object value) | |
Compares the value of this instance to a specified object that contains a specified DateTime value, and returns an integer that indicates whether this instance is earlier than, the same as, or later than the specified DateTime value. | ||
boolean | equals(java.lang.Object value) | |
Returns a value indicating whether this instance is equal to a specified object. | ||
int | getDay() | |
Gets the day of the month represented by this instance. | ||
int | getDayOfWeek() | |
Gets the day of the week represented by this instance. | ||
int | getDayOfYear() | |
Gets the day of the year represented by this instance. | ||
int | getHour() | |
Gets the hour component of the date represented by this instance. | ||
int | getMillisecond() | |
Gets the milliseconds component of the date represented by this instance. | ||
int | getMinute() | |
Gets the minute component of the date represented by this instance. | ||
int | getMonth() | |
Gets the month component of the date represented by this instance. | ||
static DateTime | getNow() | |
Gets a DateTime object that is set to the current date and time on this computer, expressed as the local time. | ||
int | getSecond() | |
Gets the seconds component of the date represented by this instance. | ||
int | getYear() | |
Gets the year component of the date represented by this instance. | ||
int | hashCode() | |
Returns the hash code for this instance. | ||
java.util.Calendar | toCalendar() | |
Converts the value of the current DateTime object to Calendar object. | ||
java.util.Date | toDate() | |
Converts the value of the current DateTime object to Date object. | ||
DateTime | toLocalTime() | |
Converts the value of the current DateTime object to local time. | ||
java.lang.String | toString() | |
Converts the value of the current DateTime object to its equivalent string representation. | ||
DateTime | toUniversalTime() | |
Converts the value of the current DateTime object to Coordinated Universal Time(UTC). |
Constructor Detail |
---|
DateTime
public DateTime(int year, int month, int day)
Initializes a new instance of the DateTime object to the specified year, month, and day. - Parameters:
year
- The year (1 through 9999).month
- The month (1 through 12).day
- The day (1 through the number of days in month).
DateTime
public DateTime(int year, int month, int day, int hour, int minute, int second)
Initializes a new instance of the DateTime object to the specified year, month, day, hour, minute, and second. - Parameters:
year
- The year (1 through 9999).month
- The month (1 through 12).day
- The day (1 through the number of days in month).hour
- The hours (0 through 23).minute
- The minutes (0 through 59).second
- The seconds (0 through 59).
DateTime
public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond)
Initializes a new instance of the DateTime object to the specified year, month, day, hour, minute, second, and millisecond. - Parameters:
year
- The year (1 through 9999).month
- The month (1 through 12).day
- The day (1 through the number of days in month).hour
- The hours (0 through 23).minute
- The minutes (0 through 59).second
- The seconds (0 through 59).millisecond
- The milliseconds (0 through 999).
DateTime
public DateTime(java.util.Date date)
Initializes a new instance of the DateTime object to the specified Date object - Parameters:
date
- The Date object
DateTime
public DateTime(java.util.Calendar cld)
Initializes a new instance of the DateTime object to the specified Calendar object - Parameters:
cld
- The Calendar object
Method Detail |
---|
toDate | |
public java.util.Date toDate() |
Converts the value of the current DateTime object to Date object. - Returns:
- Date object
toCalendar | |
public java.util.Calendar toCalendar() |
Converts the value of the current DateTime object to Calendar object. - Returns:
- Calendar object
toUniversalTime | |
public DateTime toUniversalTime() |
Converts the value of the current DateTime object to Coordinated Universal Time(UTC). - Returns:
- A DateTime object of UTC
toLocalTime | |
public DateTime toLocalTime() |
Converts the value of the current DateTime object to local time. - Returns:
- A DateTime object of local
addDays | |
public DateTime addDays(double value) |
Adds the specified number of days to the value of this instance. - Parameters:
value
- A number of whole and fractional days. The value parameter can be negative or positive.
- Returns:
- A DateTime object whose value is the sum of the date and time represented by this instance and the number of days represented by value.
addHours | |
public DateTime addHours(double value) |
Adds the specified number of hours to the value of this instance. - Parameters:
value
- A number of whole and fractional hours. The value parameter can be negative or positive.
- Returns:
- A DateTime object whose value is the sum of the date and time represented by this instance and the number of hours represented by value.
addMilliseconds | |
public DateTime addMilliseconds(double value) |
Adds the specified number of milliseconds to the value of this instance. - Parameters:
value
- A number of whole and fractional milliseconds. The value parameter can be negative or positive. Note that this value is rounded to the nearest integer.
- Returns:
- A DateTime object whose value is the sum of the date and time represented by this instance and the number of milliseconds represented by value.
addMinutes | |
public DateTime addMinutes(double value) |
Adds the specified number of minutes to the value of this instance. - Parameters:
value
- A number of whole and fractional minutes. The value parameter can be negative or positive.
- Returns:
- A DateTime object whose value is the sum of the date and time represented by this instance and the number of minutes represented by value.
addMonths | |
public DateTime addMonths(int months) |
Adds the specified number of months to the value of this instance. - Parameters:
months
- A number of months. The months parameter can be negative or positive.
- Returns:
- A DateTime object whose value is the sum of the date and time represented by this instance and months.
addSeconds | |
public DateTime addSeconds(double value) |
Adds the specified number of seconds to the value of this instance. - Parameters:
value
- A number of whole and fractional seconds. The value parameter can be negative or positive.
- Returns:
- A DateTime object whose value is the sum of the date and time represented by this instance and the number of seconds represented by value.
addYears | |
public DateTime addYears(int value) |
Adds the specified number of years to the value of this instance. - Parameters:
value
- A number of years. The value parameter can be negative or positive.
- Returns:
- A DateTime object whose value is the sum of the date and time represented by this instance and the number of years represented by value.
compareTo | |
public int compareTo(java.lang.Object value) |
Compares the value of this instance to a specified object that contains a specified DateTime value, and returns an integer that indicates whether this instance is earlier than, the same as, or later than the specified DateTime value. - Parameters:
value
- A boxed DateTime object to compare, or null.
- Returns:
- A signed number indicating the relative values of this instance and value. Value Description Less than zero This instance is earlier than value. Zero This instance is the same as value. Greater than zero This instance is later than value, or value is null.
compareTo | |
public int compareTo(DateTime value) |
Compares the value of this instance to a specified DateTime value and returns an integer that indicates whether this instance is earlier than, the same as, or later than the specified DateTime value. - Parameters:
value
- A DateTime object to compare.
- Returns:
- A signed number indicating the relative values of this instance and the value parameter. Value Description Less than zero This instance is earlier than value. Zero This instance is the same as value. Greater than zero This instance is later than value.
hashCode | |
public int hashCode() |
Returns the hash code for this instance. - Returns:
- A 32-bit signed integer hash code.
equals | |
public boolean equals(java.lang.Object value) |
Returns a value indicating whether this instance is equal to a specified object. - Parameters:
value
- An object to compare to this instance.
- Returns:
- true if value is an instance of DateTime and equals the value of this instance; otherwise, false.
getDay | |
public int getDay() |
Gets the day of the month represented by this instance. - Returns:
- The day component, expressed as a value between 1 and 31.
getDayOfWeek | |
public int getDayOfWeek() |
Gets the day of the week represented by this instance. - Returns:
- the day of the week of this DateTime value.
getDayOfYear | |
public int getDayOfYear() |
Gets the day of the year represented by this instance. - Returns:
- The day of the year, expressed as a value between 1 and 366.
getHour | |
public int getHour() |
Gets the hour component of the date represented by this instance. - Returns:
- The hour component, expressed as a value between 0 and 23.
getMillisecond | |
public int getMillisecond() |
Gets the milliseconds component of the date represented by this instance. - Returns:
- The milliseconds component, expressed as a value between 0 and 999.
getMinute | |
public int getMinute() |
Gets the minute component of the date represented by this instance. - Returns:
- The minute component, expressed as a value between 0 and 59.
getMonth | |
public int getMonth() |
Gets the month component of the date represented by this instance. - Returns:
- The month component, expressed as a value between 1 and 12.
getNow | |
public static DateTime getNow() |
Gets a DateTime object that is set to the current date and time on this computer, expressed as the local time. - Returns:
- A DateTime object whose value is the current local date and time.
getSecond | |
public int getSecond() |
Gets the seconds component of the date represented by this instance. - Returns:
- The seconds, between 0 and 59.
getYear | |
public int getYear() |
Gets the year component of the date represented by this instance. - Returns:
- The year, between 1 and 9999.
toString | |
public java.lang.String toString() |
Converts the value of the current DateTime object to its equivalent string representation. - Returns:
- A string representation of the value of the current DateTime object.
See Also:
Aspose.Cells Documentation - the home page for the Aspose.Cells Product Documentation.
Aspose.Cells Support Forum - our preferred method of support.