org.apache.axis.types
public class MonthDay extends Object implements Serializable
See Also: XML Schema 3.2.12
Constructor Summary | |
---|---|
MonthDay(int month, int day)
Constructs a MonthDay with the given values
No timezone is specified | |
MonthDay(int month, int day, String timezone)
Constructs a MonthDay with the given values, including a timezone string
The timezone is validated but not used. | |
MonthDay(String source)
Construct a MonthDay from a String in the format --MM-DD[timezone] |
Method Summary | |
---|---|
boolean | equals(Object obj) |
int | getDay() |
int | getMonth() |
String | getTimezone() |
int | hashCode()
Return the value of (month + day) XORed with the hashCode of
timezone iff one is defined.
|
void | setDay(int day)
Set the day
NOTE: if the month isn't set yet, the day isn't validated |
void | setMonth(int month) |
void | setTimezone(String timezone) |
void | setValue(int month, int day, String timezone) |
void | setValue(int month, int day) |
String | toString() |
Returns: an int
value