org.joda.time.chrono

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.chrono 
org.joda.time.chrono
org.joda.time.chrono package

Package containing the chronology classes which define the calendar systems.

This package contains all of the chronology implementations within the library. A chronology represents all the rules of a calendar system. Applications will create chronologies using the static factory methods on each specific Chronology class - getInstance. The currently provided chronology implementations are:

  • ISO
  • GJ (GregorianJulian)
  • Gregorian
  • Julian
  • Buddhist
  • Coptic
  • Ethiopic
  • Islamic

The package also contains all of the specialised field implementations. These classes are package scoped, along with various other chronology helper classes. The package scoped classes (which are not shown in the javadoc) do not form part of the public API of Joda-Time and may change at any time.

Java Source File NameTypeComment
AssembledChronology.javaClass Abstract Chronology that enables chronologies to be assembled from a container of fields.
BaseChronology.javaClass BaseChronology provides a skeleton implementation for chronology classes.
BasicChronology.javaClass Abstract implementation for calendar systems that use a typical day/month/year/leapYear model.
BasicDayOfMonthDateTimeField.javaClass Provides time calculations for the day of the month component of time.
BasicDayOfYearDateTimeField.javaClass Provides time calculations for the day of the year component of time.
BasicFixedMonthChronology.javaClass Abstract implementation of a calendar system based around fixed length months.
BasicGJChronology.javaClass Abstract Chronology for implementing chronologies based on Gregorian/Julian formulae.
BasicMonthOfYearDateTimeField.javaClass Provides time calculations for the month of the year component of time.
BasicSingleEraDateTimeField.javaClass Provides time calculations for the coptic era component of time.
BasicWeekOfWeekyearDateTimeField.javaClass Provides time calculations for the week of a week based year component of time.
BasicWeekyearDateTimeField.javaClass Provides time calculations for the week of the weekyear component of time.
BasicYearDateTimeField.javaClass A year field suitable for many calendars.
BuddhistChronology.javaClass A chronology that matches the BuddhistCalendar class supplied by Sun.

The chronology is identical to the Gregorian/Julian, except that the year is offset by +543 and the era is named 'BE' for Buddhist Era.

This class was intended by Sun to model the calendar used in Thailand. However, the actual rules for Thailand are much more involved than this class covers.

CopticChronology.javaClass Implements the Coptic calendar system, which defines every fourth year as leap, much like the Julian calendar.
EthiopicChronology.javaClass Implements the Ethiopic calendar system, which defines every fourth year as leap, much like the Julian calendar.
GJChronology.javaClass Implements the Gregorian/Julian calendar system which is the calendar system used in most of the world.
GJDayOfWeekDateTimeField.javaClass GJDayOfWeekDateTimeField provides time calculations for the day of the week component of time.
GJEraDateTimeField.javaClass Provides time calculations for the era component of time.
GJLocaleSymbols.javaClass Utility class used by a few of the GJDateTimeFields.
GJMonthOfYearDateTimeField.javaClass Provides time calculations for the month of the year component of time.
GJYearOfEraDateTimeField.javaClass Provides time calculations for the year of era component of time.
GregorianChronology.javaClass Implements a pure proleptic Gregorian calendar system, which defines every fourth year as leap, unless the year is divisible by 100 and not by 400. This improves upon the Julian calendar leap year rule.

Although the Gregorian calendar did not exist before 1582 CE, this chronology assumes it did, thus it is proleptic.

IslamicChronology.javaClass Implements the Islamic, or Hijri, calendar system using arithmetic rules.

This calendar is a lunar calendar with a shorter year than ISO. Year 1 in the Islamic calendar began on July 16, 622 CE (Julian), thus Islamic years do not begin at the same time as Julian years.

ISOChronology.javaClass Implements a chronology that follows the rules of the ISO8601 standard, which is compatible with Gregorian for all modern dates. When ISO does not define a field, but it can be determined (such as AM/PM) it is included.

With the exception of century related fields, ISOChronology is exactly the same as GregorianChronology .

ISOYearOfEraDateTimeField.javaClass This field is not publicy exposed by ISOChronology, but rather it is used to build the yearOfCentury and centuryOfEra fields.
JulianChronology.javaClass Implements a pure proleptic Julian calendar system, which defines every fourth year as leap.
LenientChronology.javaClass Wraps another Chronology, ensuring all the fields are lenient.
LimitChronology.javaClass Wraps another Chronology to impose limits on the range of instants that the fields within a Chronology may support.
StrictChronology.javaClass Wraps another Chronology, ensuring all the fields are strict.
TestAll.javaClass Entry point for all tests in this package.
TestBuddhistChronology.javaClass This class is a Junit unit test for BuddhistChronology.
TestCopticChronology.javaClass This class is a Junit unit test for CopticChronology.
TestEthiopicChronology.javaClass This class is a Junit unit test for EthiopicChronology.
TestGJChronology.javaClass This class is a Junit unit test for GJChronology.
TestGregorianChronology.javaClass This class is a Junit unit test for GregorianChronology.
TestIslamicChronology.javaClass This class is a Junit unit test for IslamicChronology.
TestISOChronology.javaClass This class is a Junit unit test for ISOChronology.
TestJulianChronology.javaClass This class is a Junit unit test for JulianChronology.
TestLenientChronology.javaClass
ZonedChronology.javaClass Wraps another Chronology to add support for time zones.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.