Interface IDateTimeValueType
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
BigDateTimeValueType
public interface IDateTimeValueType extends java.io.Serializable
Interface as value type of DateTimeType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IDateTimeValueType
add(ITimeDurationValueType duration)
returns the result of addition of this object and TimeDuration.int
compare(IDateTimeValueType rhs)
compare two DateTimeValueType as defined in com.sun.msv.datatype/ComparatorBigDateTimeValueType
getBigValue()
IDateTimeValueType
normalize()
gets the normalized IDateTimeValueType.java.util.Calendar
toCalendar()
Approximates the value represented by this object into a Calendar object.
-
-
-
Method Detail
-
getBigValue
BigDateTimeValueType getBigValue()
-
add
IDateTimeValueType add(ITimeDurationValueType duration)
returns the result of addition of this object and TimeDuration. this object will not be mutated.
-
normalize
IDateTimeValueType normalize()
gets the normalized IDateTimeValueType. normalized value always has GMT timezone or no timezone
-
compare
int compare(IDateTimeValueType rhs)
compare two DateTimeValueType as defined in com.sun.msv.datatype/Comparator
-
toCalendar
java.util.Calendar toCalendar()
Approximates the value represented by this object into a Calendar object. This conversion may lose accuracy.
-
-