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 Summary
Constructors 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 Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
int
getDay()
String
getTimezone()
int
hashCode()
Return the value of day XORed with the hashCode of timezone iff one is defined.void
setDay(int day)
Set the dayvoid
setTimezone(String timezone)
void
setValue(int day)
void
setValue(int day, String timezone)
String
toString()
-
-
-
Constructor Detail
-
Day
public Day(int day) throws NumberFormatException
Constructs a Day with the given values No timezone is specified- Throws:
NumberFormatException
-
Day
public Day(int day, String timezone) throws NumberFormatException
Constructs a Day with the given values, including a timezone string The timezone is validated but not used.- Throws:
NumberFormatException
-
Day
public Day(String source) throws NumberFormatException
Construct a Day from a String in the format ---DD[timezone]- Throws:
NumberFormatException
-
-
Method Detail
-
getDay
public int getDay()
-
setDay
public void setDay(int day)
Set the day
-
getTimezone
public String getTimezone()
-
setTimezone
public void setTimezone(String timezone)
-
setValue
public void setValue(int day, String timezone) throws NumberFormatException
- Throws:
NumberFormatException
-
setValue
public void setValue(int day) throws NumberFormatException
- Throws:
NumberFormatException
-
-