Java Doc for PeriodFormatter.java in  » Development » Joda-Time » org » joda » time » format » 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 » Development » Joda Time » org.joda.time.format 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.joda.time.format.PeriodFormatter

PeriodFormatter
public class PeriodFormatter (Code)
Controls the printing and parsing of a time period to and from a string.

This class is the main API for printing and parsing used by most applications. Instances of this class are created via one of three factory classes:

An instance of this class holds a reference internally to one printer and one parser. It is possible that one of these may be null, in which case the formatter cannot print/parse. This can be checked via the PeriodFormatter.isPrinter() and PeriodFormatter.isParser() methods.

The underlying printer/parser can be altered to behave exactly as required by using a decorator modifier:

This returns a new formatter (instances of this class are immutable).

The main methods of the class are the printXxx and parseXxx methods. These are used as follows:

 // print using the default locale
 String periodStr = formatter.print(period);
 // print using the French locale
 String periodStr = formatter.withLocale(Locale.FRENCH).print(period);
 // parse using the French locale
 Period date = formatter.withLocale(Locale.FRENCH).parsePeriod(str);
 

author:
   Brian S O'Neill
author:
   Stephen Colebourne
since:
   1.0



Constructor Summary
public  PeriodFormatter(PeriodPrinter printer, PeriodParser parser)
     Creates a new formatter, however you will normally use the factory or the builder.

Method Summary
public  LocalegetLocale()
     Gets the locale that will be used for printing and parsing.
public  PeriodTypegetParseType()
     Gets the PeriodType that will be used for parsing.
public  PeriodParsergetParser()
     Gets the internal parser object that performs the real parsing work.
public  PeriodPrintergetPrinter()
     Gets the internal printer object that performs the real printing work.
public  booleanisParser()
     Is this formatter capable of parsing.
public  booleanisPrinter()
     Is this formatter capable of printing.
public  intparseInto(ReadWritablePeriod period, String text, int position)
     Parses a period from the given text, at the given position, saving the result into the fields of the given ReadWritablePeriod.
public  MutablePeriodparseMutablePeriod(String text)
     Parses a period from the given text, returning a new MutablePeriod.
public  PeriodparsePeriod(String text)
     Parses a period from the given text, returning a new Period.
public  Stringprint(ReadablePeriod period)
     Prints a ReadablePeriod to a new String.
public  voidprintTo(StringBuffer buf, ReadablePeriod period)
     Prints a ReadablePeriod to a StringBuffer.
public  voidprintTo(Writer out, ReadablePeriod period)
     Prints a ReadablePeriod to a Writer.
public  PeriodFormatterwithLocale(Locale locale)
     Returns a new formatter with a different locale that will be used for printing and parsing.
public  PeriodFormatterwithParseType(PeriodType type)
     Returns a new formatter with a different PeriodType for parsing.


Constructor Detail
PeriodFormatter
public PeriodFormatter(PeriodPrinter printer, PeriodParser parser)(Code)
Creates a new formatter, however you will normally use the factory or the builder.
Parameters:
  printer - the internal printer, null if cannot print
Parameters:
  parser - the internal parser, null if cannot parse




Method Detail
getLocale
public Locale getLocale()(Code)
Gets the locale that will be used for printing and parsing. the locale to use



getParseType
public PeriodType getParseType()(Code)
Gets the PeriodType that will be used for parsing. the parse type to use



getParser
public PeriodParser getParser()(Code)
Gets the internal parser object that performs the real parsing work. the internal parser



getPrinter
public PeriodPrinter getPrinter()(Code)
Gets the internal printer object that performs the real printing work. the internal printer



isParser
public boolean isParser()(Code)
Is this formatter capable of parsing. true if this is a parser



isPrinter
public boolean isPrinter()(Code)
Is this formatter capable of printing. true if this is a printer



parseInto
public int parseInto(ReadWritablePeriod period, String text, int position)(Code)
Parses a period from the given text, at the given position, saving the result into the fields of the given ReadWritablePeriod. If the parse succeeds, the return value is the new text position. Note that the parse may succeed without fully reading the text.

The parse type of the formatter is not used by this method.

If it fails, the return value is negative, but the period may still be modified. To determine the position where the parse failed, apply the one's complement operator (~) on the return value.
Parameters:
  period - a period that will be modified
Parameters:
  text - text to parse
Parameters:
  position - position to start parsing from new position, if negative, parse failed. Apply complementoperator (~) to get position of failure
throws:
  IllegalArgumentException - if any field is out of range




parseMutablePeriod
public MutablePeriod parseMutablePeriod(String text)(Code)
Parses a period from the given text, returning a new MutablePeriod.
Parameters:
  text - text to parse parsed value in a MutablePeriod object
throws:
  IllegalArgumentException - if any field is out of range



parsePeriod
public Period parsePeriod(String text)(Code)
Parses a period from the given text, returning a new Period.
Parameters:
  text - text to parse parsed value in a Period object
throws:
  IllegalArgumentException - if any field is out of range



print
public String print(ReadablePeriod period)(Code)
Prints a ReadablePeriod to a new String.
Parameters:
  period - the period to format, not null the printed result



printTo
public void printTo(StringBuffer buf, ReadablePeriod period)(Code)
Prints a ReadablePeriod to a StringBuffer.
Parameters:
  buf - the formatted period is appended to this buffer
Parameters:
  period - the period to format, not null



printTo
public void printTo(Writer out, ReadablePeriod period) throws IOException(Code)
Prints a ReadablePeriod to a Writer.
Parameters:
  out - the formatted period is written out
Parameters:
  period - the period to format, not null



withLocale
public PeriodFormatter withLocale(Locale locale)(Code)
Returns a new formatter with a different locale that will be used for printing and parsing.

A PeriodFormatter is immutable, so a new instance is returned, and the original is unaltered and still usable.
Parameters:
  locale - the locale to use the new formatter




withParseType
public PeriodFormatter withParseType(PeriodType type)(Code)
Returns a new formatter with a different PeriodType for parsing.

A PeriodFormatter is immutable, so a new instance is returned, and the original is unaltered and still usable.
Parameters:
  type - the type to use in parsing the new formatter




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.