Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.joda.time.tz
Class ZoneInfoCompiler.Zone  view ZoneInfoCompiler.Zone download ZoneInfoCompiler.Zone.java

java.lang.Object
  extended byorg.joda.time.tz.ZoneInfoCompiler.Zone
Enclosing class:
ZoneInfoCompiler

private static class ZoneInfoCompiler.Zone
extends java.lang.Object


Field Summary
 java.lang.String iFormat
           
 java.lang.String iName
           
private  ZoneInfoCompiler.Zone iNext
           
 int iOffsetMillis
           
 java.lang.String iRules
           
 ZoneInfoCompiler.DateTimeOfYear iUntilDateTimeOfYear
           
 int iUntilYear
           
 
Constructor Summary
private ZoneInfoCompiler.Zone(java.lang.String name, java.util.StringTokenizer st)
           
(package private) ZoneInfoCompiler.Zone(java.util.StringTokenizer st)
           
 
Method Summary
 void addToBuilder(DateTimeZoneBuilder builder, java.util.Map ruleSets)
          Adds zone info to the builder.
private static void addToBuilder(ZoneInfoCompiler.Zone zone, DateTimeZoneBuilder builder, java.util.Map ruleSets)
           
(package private)  void chain(java.util.StringTokenizer st)
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

iName

public final java.lang.String iName

iOffsetMillis

public final int iOffsetMillis

iRules

public final java.lang.String iRules

iFormat

public final java.lang.String iFormat

iUntilYear

public final int iUntilYear

iUntilDateTimeOfYear

public final ZoneInfoCompiler.DateTimeOfYear iUntilDateTimeOfYear

iNext

private ZoneInfoCompiler.Zone iNext
Constructor Detail

ZoneInfoCompiler.Zone

ZoneInfoCompiler.Zone(java.util.StringTokenizer st)

ZoneInfoCompiler.Zone

private ZoneInfoCompiler.Zone(java.lang.String name,
                              java.util.StringTokenizer st)
Method Detail

chain

void chain(java.util.StringTokenizer st)

addToBuilder

public void addToBuilder(DateTimeZoneBuilder builder,
                         java.util.Map ruleSets)
Adds zone info to the builder.


addToBuilder

private static void addToBuilder(ZoneInfoCompiler.Zone zone,
                                 DateTimeZoneBuilder builder,
                                 java.util.Map ruleSets)

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).