com.sun.msv.datatype.xsd.datetime
public class BigDateTimeValueType extends Object implements IDateTimeValueType
Constructor Summary | |
---|---|
BigDateTimeValueType(BigDateTimeValueType base, TimeZone newTimeZone) creates an instance with the specified BigDateTimeValueType,
with modified time zone.
created object shares its date/time value component with the original one,
so special care is necessary not to mutate those values. | |
BigDateTimeValueType(BigInteger year, int month, int day, int hour, int minute, BigDecimal second, TimeZone timeZone) | |
BigDateTimeValueType(BigInteger year, Integer month, Integer day, Integer hour, Integer minute, BigDecimal second, TimeZone timeZone) | |
BigDateTimeValueType() |
Method Summary | |
---|---|
IDateTimeValueType | add(ITimeDurationValueType _rhs) |
int | compare(IDateTimeValueType o) |
boolean | equals(Object o) |
boolean | equals(IDateTimeValueType rhs) |
boolean | equals(BigDateTimeValueType lhs, BigDateTimeValueType rhs) |
BigDateTimeValueType | getBigValue() |
Integer | getDay() |
Integer | getHour() |
Integer | getMinute() |
Integer | getMonth() |
BigDecimal | getSecond() |
TimeZone | getTimeZone() |
BigInteger | getYear() |
int | hashCode() |
IDateTimeValueType | normalize() |
Calendar | toCalendar() |
String | toString() gets a human-readable representation of this object.
return value is not intended to be compliant with the canonical representation
of "dateTime" type. |