站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss 4.0.1 sp1 jaxrpc API Documentation 英文版文档

MonthDay (JAXRPC API) - JBoss 4.0.1 sp1 jaxrpc API Documentation 英文版文档


org.apache.axis.types
Class MonthDay

java.lang.Object
  extended byorg.apache.axis.types.MonthDay
All Implemented Interfaces:
Serializable

public class MonthDay
extends Object
implements Serializable

Implementation of the XML Schema type gMonthDay

Author:
Tom Jordahl
See Also:
XML Schema 3.2.12, Serialized Form

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()
           
 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)
           
 void setValue(int month, int day, String timezone)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MonthDay

public MonthDay(int month,
                int day)
         throws NumberFormatException
Constructs a MonthDay with the given values No timezone is specified


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.


MonthDay

public MonthDay(String source)
         throws NumberFormatException
Construct a MonthDay from a String in the format --MM-DD[timezone]

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

toString

public String toString()

equals

public boolean equals(Object obj)


Copyright © 2002 JBoss Group, LLC. All Rights Reserved.