Package adams.data.sequence
Interface XYSequencePointWithErrors
-
- All Superinterfaces:
CloneHandler
,Comparable
,DataPoint
,Serializable
- All Known Implementing Classes:
SequencePlotPoint
public interface XYSequencePointWithErrors extends DataPoint
ExtendsDataPoint
to store X/Y error information as well.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Double[]
getErrorX()
Returns the error information for X.Double[]
getErrorY()
Returns the error information for Y.double
getMaxX()
Returns the maximum for X.double
getMaxY()
Returns the maximum for Y.double
getMinX()
Returns the minimum for X.double
getMinY()
Returns the minimum for Y.boolean
hasErrorX()
Checks whether error information for X is available.boolean
hasErrorY()
Checks whether error information for Y is available.-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Method Detail
-
getMinX
double getMinX()
Returns the minimum for X.- Returns:
- the minimum
-
getMaxX
double getMaxX()
Returns the maximum for X.- Returns:
- the maximum
-
hasErrorX
boolean hasErrorX()
Checks whether error information for X is available.- Returns:
- true if available
-
getErrorX
Double[] getErrorX()
Returns the error information for X.- Returns:
- the error information, null if not available
-
getMinY
double getMinY()
Returns the minimum for Y.- Returns:
- the minimum
-
getMaxY
double getMaxY()
Returns the maximum for Y.- Returns:
- the maximum
-
hasErrorY
boolean hasErrorY()
Checks whether error information for Y is available.- Returns:
- true if available
-
getErrorY
Double[] getErrorY()
Returns the error information for Y.- Returns:
- the error information, null if not available
-
-