Class Day
- java.lang.Object
- 
- org.apache.axis2.databinding.types.Day
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class Day extends Object implements Serializable Implementation of the XML Schema type gDay- See Also:
- XML Schema 3.2.13, Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description Day(int day)Constructs a Day with the given values No timezone is specifiedDay(int day, String timezone)Constructs a Day with the given values, including a timezone string The timezone is validated but not used.Day(String source)Construct a Day from a String in the format ---DD[timezone]
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)intgetDay()StringgetTimezone()inthashCode()Return the value of day XORed with the hashCode of timezone iff one is defined.voidsetDay(int day)Set the dayvoidsetTimezone(String timezone)voidsetValue(int day)voidsetValue(int day, String timezone)StringtoString()
 
- 
- 
- 
Constructor Detail- 
Daypublic Day(int day) throws NumberFormatExceptionConstructs a Day with the given values No timezone is specified- Throws:
- NumberFormatException
 
 - 
Daypublic Day(int day, String timezone) throws NumberFormatExceptionConstructs a Day with the given values, including a timezone string The timezone is validated but not used.- Throws:
- NumberFormatException
 
 - 
Daypublic Day(String source) throws NumberFormatException Construct a Day from a String in the format ---DD[timezone]- Throws:
- NumberFormatException
 
 
- 
 - 
Method Detail- 
getDaypublic int getDay() 
 - 
setDaypublic void setDay(int day) Set the day
 - 
getTimezonepublic String getTimezone() 
 - 
setTimezonepublic void setTimezone(String timezone) 
 - 
setValuepublic void setValue(int day, String timezone) throws NumberFormatException- Throws:
- NumberFormatException
 
 - 
setValuepublic void setValue(int day) throws NumberFormatException- Throws:
- NumberFormatException
 
 
- 
 
-