Package org.apache.xmlbeans
Interface XmlDate
-
- All Superinterfaces:
XmlAnySimpleType
,XmlObject
,XmlTokenSource
- All Known Implementing Classes:
XmlDateImpl
public interface XmlDate extends XmlAnySimpleType
- See Also:
XmlCalendar
,GDate
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
XmlDate.Factory
A class with methods for creating instances ofXmlDate
.
-
Field Summary
Fields Modifier and Type Field Description static SchemaType
type
The constantSchemaType
object representing this schema type.-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.Calendar
calendarValue()
Deprecated.replaced withgetCalendarValue()
java.util.Date
dateValue()
Deprecated.replaced withgetDateValue()
GDate
gDateValue()
Deprecated.replaced withgetGDateValue()
java.util.Calendar
getCalendarValue()
Returns this value as aCalendar
java.util.Date
getDateValue()
Returns this value as aDate
GDate
getGDateValue()
Returns this value as aGDate
void
set(java.util.Calendar c)
Deprecated.replaced withsetCalendarValue(java.util.Calendar)
void
set(java.util.Date d)
Deprecated.replaced withsetDateValue(java.util.Date)
void
set(GDateSpecification gd)
Deprecated.replaced withsetGDateValue(org.apache.xmlbeans.GDate)
void
setCalendarValue(java.util.Calendar c)
Sets this value as aCalendar
void
setDateValue(java.util.Date d)
Sets this value as aDate
void
setGDateValue(GDate gd)
Sets this value as aGDateSpecification
-
Methods inherited from interface org.apache.xmlbeans.XmlAnySimpleType
getStringValue, set, setStringValue, stringValue
-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
The constantSchemaType
object representing this schema type.
-
-
Method Detail
-
calendarValue
java.util.Calendar calendarValue()
Deprecated.replaced withgetCalendarValue()
Returns this value as aCalendar
-
set
void set(java.util.Calendar c)
Deprecated.replaced withsetCalendarValue(java.util.Calendar)
Sets this value as aCalendar
-
gDateValue
GDate gDateValue()
Deprecated.replaced withgetGDateValue()
Returns this value as aGDate
-
set
void set(GDateSpecification gd)
Deprecated.replaced withsetGDateValue(org.apache.xmlbeans.GDate)
Sets this value as aGDateSpecification
-
dateValue
java.util.Date dateValue()
Deprecated.replaced withgetDateValue()
Returns this value as aDate
-
set
void set(java.util.Date d)
Deprecated.replaced withsetDateValue(java.util.Date)
Sets this value as aDate
-
getCalendarValue
java.util.Calendar getCalendarValue()
Returns this value as aCalendar
-
setCalendarValue
void setCalendarValue(java.util.Calendar c)
Sets this value as aCalendar
-
setGDateValue
void setGDateValue(GDate gd)
Sets this value as aGDateSpecification
-
getDateValue
java.util.Date getDateValue()
Returns this value as aDate
-
setDateValue
void setDateValue(java.util.Date d)
Sets this value as aDate
-
-