Class MonthDay
- java.lang.Object
-
- org.apache.axis2.databinding.types.MonthDay
-
- All Implemented Interfaces:
Serializable
public class MonthDay extends Object implements Serializable
Implementation of the XML Schema type gMonthDay- See Also:
- XML Schema 3.2.12, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MonthDay(int month, int day)
Constructs a MonthDay with the given values No timezone is specifiedMonthDay(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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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 validatedvoid
setMonth(int month)
void
setTimezone(String timezone)
void
setValue(int month, int day)
void
setValue(int month, int day, String timezone)
String
toString()
-
-
-
Constructor Detail
-
MonthDay
public MonthDay(int month, int day) throws NumberFormatException
Constructs a MonthDay with the given values No timezone is specified- Throws:
NumberFormatException
-
MonthDay
public MonthDay(int month, int day, String timezone) throws NumberFormatException
Constructs a MonthDay with the given values, including a timezone string The timezone is validated but not used.- Throws:
NumberFormatException
-
MonthDay
public MonthDay(String source) throws NumberFormatException
Construct a MonthDay from a String in the format --MM-DD[timezone]- Throws:
NumberFormatException
-
-
Method Detail
-
getMonth
public int getMonth()
-
setMonth
public void setMonth(int month)
-
getDay
public int getDay()
-
setDay
public void setDay(int day)
Set the day NOTE: if the month isn't set yet, the day isn't validated
-
getTimezone
public String getTimezone()
-
setTimezone
public void setTimezone(String timezone)
-
setValue
public void setValue(int month, int day, String timezone) throws NumberFormatException
- Throws:
NumberFormatException
-
setValue
public void setValue(int month, int day) throws NumberFormatException
- Throws:
NumberFormatException
-
-