public class Date extends Object
Java class for Date complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Date">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
<element name="month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
<element name="day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected Integer |
day |
protected Integer |
month |
protected Integer |
year |
| Constructor and Description |
|---|
Date() |
| Modifier and Type | Method and Description |
|---|---|
Integer |
getDay()
Gets the value of the day property.
|
Integer |
getMonth()
Gets the value of the month property.
|
Integer |
getYear()
Gets the value of the year property.
|
void |
setDay(Integer value)
Sets the value of the day property.
|
void |
setMonth(Integer value)
Sets the value of the month property.
|
void |
setYear(Integer value)
Sets the value of the year property.
|
public Integer getYear()
Integerpublic void setYear(Integer value)
value - allowed object is
Integerpublic Integer getMonth()
Integerpublic void setMonth(Integer value)
value - allowed object is
Integerpublic Integer getDay()
IntegerCopyright © 2023. All rights reserved.