List of usage examples for org.jfree.data.time RegularTimePeriod subclass-usage
From source file org.jfree.data.time.Millisecond.java
/** * Represents a millisecond. This class is immutable, which is a requirement * for all {@link RegularTimePeriod} subclasses. */ public class Millisecond extends RegularTimePeriod implements Serializable, Comparable<TimePeriod> {
From source file org.jfree.data.time.Quarter.java
/** * Defines a quarter (in a given year). The range supported is Q1 1900 to * Q4 9999. This class is immutable, which is a requirement for all * {@link RegularTimePeriod} subclasses. */ public class Quarter extends RegularTimePeriod implements Serializable {
From source file org.jfree.data.time.Second.java
/** * Represents a second in a particular day. This class is immutable, which is * a requirement for all {@link RegularTimePeriod} subclasses. */ public class Second extends RegularTimePeriod implements Serializable {
From source file org.jfree.data.time.Hour.java
/** * Represents an hour in a specific day. This class is immutable, which is a * requirement for all {@link RegularTimePeriod} subclasses. */ public class Hour extends RegularTimePeriod implements Serializable {
From source file org.jfree.data.time.Day.java
/** * Represents a single day in the range 1-Jan-1900 to 31-Dec-9999. This class * is immutable, which is a requirement for all {@link RegularTimePeriod} * subclasses. */ public class Day extends RegularTimePeriod implements Serializable {
From source file org.jfree.data.time.Minute.java
/** * Represents a minute. This class is immutable, which is a requirement for * all {@link RegularTimePeriod} subclasses. */ public class Minute extends RegularTimePeriod implements Serializable {
From source file org.jfree.data.time.Month.java
/** * Represents a single month. This class is immutable, which is a requirement * for all {@link RegularTimePeriod} subclasses. */ public class Month extends RegularTimePeriod implements Serializable {
From source file org.jfree.data.time.Week.java
/**
* A calendar week. All years are considered to have 53 weeks, numbered from 1
* to 53, although in many cases the 53rd week is empty. Most of the time, the
* 1st week of the year *begins* in the previous calendar year, but it always
* finishes in the current year (this behaviour matches the workings of the
* <code>GregorianCalendar</code> class).