Package org.apache.axis.types
Class MonthDay
- java.lang.Object
-
- org.apache.axis.types.MonthDay
-
- All Implemented Interfaces:
java.io.Serializable
public class MonthDay extends java.lang.Object implements java.io.SerializableImplementation of the XML Schema type gMonthDay- Author:
- Tom Jordahl
- 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, java.lang.String timezone)Constructs a MonthDay with the given values, including a timezone string The timezone is validated but not used.MonthDay(java.lang.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 booleanequals(java.lang.Object obj)intgetDay()intgetMonth()java.lang.StringgetTimezone()inthashCode()Return the value of (month + day) XORed with the hashCode of timezone iff one is defined.voidsetDay(int day)Set the day NOTE: if the month isn't set yet, the day isn't validatedvoidsetMonth(int month)voidsetTimezone(java.lang.String timezone)voidsetValue(int month, int day)voidsetValue(int month, int day, java.lang.String timezone)java.lang.StringtoString()
-
-
-
Constructor Detail
-
MonthDay
public MonthDay(int month, int day) throws java.lang.NumberFormatExceptionConstructs a MonthDay with the given values No timezone is specified- Throws:
java.lang.NumberFormatException
-
MonthDay
public MonthDay(int month, int day, java.lang.String timezone) throws java.lang.NumberFormatExceptionConstructs a MonthDay with the given values, including a timezone string The timezone is validated but not used.- Throws:
java.lang.NumberFormatException
-
MonthDay
public MonthDay(java.lang.String source) throws java.lang.NumberFormatExceptionConstruct a MonthDay from a String in the format --MM-DD[timezone]- Throws:
java.lang.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 java.lang.String getTimezone()
-
setTimezone
public void setTimezone(java.lang.String timezone)
-
setValue
public void setValue(int month, int day, java.lang.String timezone) throws java.lang.NumberFormatException- Throws:
java.lang.NumberFormatException
-
setValue
public void setValue(int month, int day) throws java.lang.NumberFormatException- Throws:
java.lang.NumberFormatException
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
Return the value of (month + day) XORed with the hashCode of timezone iff one is defined.- Overrides:
hashCodein classjava.lang.Object- Returns:
- an
intvalue
-
-