Java Doc for Duration.java in  » Web-Services-AXIS2 » adb » org » apache » axis2 » databinding » types » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Services AXIS2 » adb » org.apache.axis2.databinding.types 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.axis2.databinding.types.Duration

Duration
public class Duration implements Serializable(Code)
Implementation of the XML Schema type duration. Duration supports a minimum fractional second precision of milliseconds.
See Also:    XML Schema 3.2.6


Field Summary
 intdays
    
 inthours
    
 booleanisNegative
    
 intminutes
    
 intmonths
    
 doubleseconds
    
 intyears
    

Constructor Summary
public  Duration()
    
public  Duration(boolean negative, int aYears, int aMonths, int aDays, int aHours, int aMinutes, double aSeconds)
    
public  Duration(String duration)
     Constructs Duration from a String in an xsd:duration format - PnYnMnDTnHnMnS.
public  Duration(boolean negative, Calendar calendar)
     Constructs Duration from a Calendar.

Method Summary
public  longcompare(Duration duration)
    
public  booleanequals(Object object)
     The equals method compares the time represented by duration object, not its string representation.
public  CalendargetAsCalendar()
     Returns duration as a calendar.
public  CalendargetAsCalendar(Calendar startTime)
     Returns duration as a calendar.
public  intgetDays()
    
public  intgetHours()
    
public  intgetMinutes()
    
public  intgetMonths()
    
public  doublegetSeconds()
    
public  intgetYears()
    
public  inthashCode()
    
public  booleanisNegative()
    
public  voidparseDate(String date)
     This method parses the date portion of a String that represents xsd:duration - nYnMnD.
public  voidparseTime(String time)
     This method parses the time portion of a String that represents xsd:duration - nHnMnS.
public  voidsetDays(int days)
    
public  voidsetHours(int hours)
    
public  voidsetMinutes(int minutes)
    
public  voidsetMonths(int months)
    
public  voidsetNegative(boolean negative)
    
public  voidsetSeconds(int seconds)
    
public  voidsetSeconds(double seconds)
     Sets the seconds.
public  voidsetYears(int years)
    
public  StringtoString()
     This returns the xml representation of an xsd:duration object.

Field Detail
days
int days(Code)



hours
int hours(Code)



isNegative
boolean isNegative(Code)



minutes
int minutes(Code)



months
int months(Code)



seconds
double seconds(Code)



years
int years(Code)




Constructor Detail
Duration
public Duration()(Code)
Default no-arg constructor



Duration
public Duration(boolean negative, int aYears, int aMonths, int aDays, int aHours, int aMinutes, double aSeconds)(Code)

Parameters:
  negative -
Parameters:
  aYears -
Parameters:
  aMonths -
Parameters:
  aDays -
Parameters:
  aHours -
Parameters:
  aMinutes -
Parameters:
  aSeconds -



Duration
public Duration(String duration) throws IllegalArgumentException(Code)
Constructs Duration from a String in an xsd:duration format - PnYnMnDTnHnMnS.
Parameters:
  duration - String
throws:
  IllegalArgumentException - if the string doesn't parse correctly.



Duration
public Duration(boolean negative, Calendar calendar) throws IllegalArgumentException(Code)
Constructs Duration from a Calendar.
Parameters:
  calendar - Calendar
throws:
  IllegalArgumentException - if the calendar object does not represent any date nortime.




Method Detail
compare
public long compare(Duration duration)(Code)



equals
public boolean equals(Object object)(Code)
The equals method compares the time represented by duration object, not its string representation. Hence, a duration object representing 65 minutes is considered equal to a duration object representing 1 hour and 5 minutes.
Parameters:
  object -



getAsCalendar
public Calendar getAsCalendar()(Code)
Returns duration as a calendar. Due to the way a Calendar class works, the values for particular fields may not be the same as obtained through getter methods. For example, if a duration's object getMonths returns 20, a similar call on a calendar object will return 1 year and 8 months. Calendar



getAsCalendar
public Calendar getAsCalendar(Calendar startTime)(Code)
Returns duration as a calendar. Due to the way a Calendar class works, the values for particular fields may not be the same as obtained through getter methods. For example, if a Duration's object getMonths returns 20, a similar call on a Calendar object will return 1 year and 8 months.
Parameters:
  startTime - Calendar Calendar



getDays
public int getDays()(Code)



getHours
public int getHours()(Code)



getMinutes
public int getMinutes()(Code)



getMonths
public int getMonths()(Code)



getSeconds
public double getSeconds()(Code)



getYears
public int getYears()(Code)



hashCode
public int hashCode()(Code)



isNegative
public boolean isNegative()(Code)



parseDate
public void parseDate(String date) throws IllegalArgumentException(Code)
This method parses the date portion of a String that represents xsd:duration - nYnMnD.
Parameters:
  date -
throws:
  IllegalArgumentException - if date does not match pattern



parseTime
public void parseTime(String time) throws IllegalArgumentException(Code)
This method parses the time portion of a String that represents xsd:duration - nHnMnS.
Parameters:
  time -
throws:
  IllegalArgumentException - if time does not match pattern



setDays
public void setDays(int days)(Code)

Parameters:
  days -



setHours
public void setHours(int hours)(Code)

Parameters:
  hours -



setMinutes
public void setMinutes(int minutes)(Code)

Parameters:
  minutes -



setMonths
public void setMonths(int months)(Code)

Parameters:
  months -



setNegative
public void setNegative(boolean negative)(Code)

Parameters:
  negative -



setSeconds
public void setSeconds(int seconds)(Code)

Parameters:
  seconds - Duration.setSeconds(double) setSeconds(double)



setSeconds
public void setSeconds(double seconds)(Code)
Sets the seconds. NOTE: The fractional value of seconds is rounded up to milliseconds.
Parameters:
  seconds - double



setYears
public void setYears(int years)(Code)

Parameters:
  years -



toString
public String toString()(Code)
This returns the xml representation of an xsd:duration object.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.