Package org.jfree.data.time
Class TimePeriodValue
java.lang.Object
org.jfree.data.time.TimePeriodValue
- All Implemented Interfaces:
Serializable,Cloneable
Represents a time period and an associated value.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTimePeriodValue(TimePeriod period, double value) Constructs a new data item.TimePeriodValue(TimePeriod period, Number value) Constructs a new data item. -
Method Summary
Modifier and TypeMethodDescriptionclone()Clones the object.booleanTests this object for equality with the target object.Returns the time period.getValue()Returns the value.inthashCode()Returns a hash code value for the object.voidSets the value for this data item.toString()Returns a string representing this instance, primarily for use in debugging.
-
Constructor Details
-
TimePeriodValue
Constructs a new data item.- Parameters:
period- the time period (nullnot permitted).value- the value associated with the time period.- Throws:
IllegalArgumentException- ifperiodisnull.
-
TimePeriodValue
Constructs a new data item.- Parameters:
period- the time period (nullnot permitted).value- the value associated with the time period.- Throws:
IllegalArgumentException- ifperiodisnull.
-
-
Method Details
-
getPeriod
Returns the time period.- Returns:
- The time period (never
null).
-
getValue
Returns the value.- Returns:
- The value (possibly
null). - See Also:
-
setValue
Sets the value for this data item.- Parameters:
value- the new value (nullpermitted).- See Also:
-
equals
Tests this object for equality with the target object. -
hashCode
Returns a hash code value for the object. -
clone
Clones the object.Note: no need to clone the period or value since they are immutable classes.
-
toString
Returns a string representing this instance, primarily for use in debugging.
-