Documentation of 'sgtplot.dm.SGTData' Java class
SGTData
sgtplot.dm

Interface SGTData

    • Method Detail

      • getTitle

        java.lang.String getTitle()
        Get the title.
      • getId

        java.lang.String getId()
        Get the unique identifier. The presence of the identifier is optional, but if it is present it should be unique. This field is used to search for the layer that contains the data.
        Returns:
        unique identifier
        See Also:
        Pane, Layer
      • copy

        SGTData copy()
        Create a shallow copy. User should implement using the clone() method, which requires the Cloneable interface be inherited. If clone() is used, then references to objects are copied NOT the object itself.

        For example,

         public SGTData copy() {
           SGTData newData;
           try {
             newData = (SGTData)clone();
           } catch (CloneNotSupportedException e) {
             newData = null;
           }
           return newData;
         }
         
        Returns:
        shallow copy
        See Also:
        Object
      • isXTime

        boolean isXTime()
        Returns true if the X coordinate is Time.
      • isYTime

        boolean isYTime()
        Returns true if the Y coordinate is Time.
      • getXMetaData

        SGTMetaData getXMetaData()
        Returns the X SGTMetaData.
      • getYMetaData

        SGTMetaData getYMetaData()
        Returns the Y SGTMetaData.
      • getXRange

        SoTRange getXRange()
        Returns the range of the X coordinates. If all the data in the array is missing, this method will return Double.NaN as the start and end values for data of type double and return GeoDate(Long.MIN_VALUE) for data of type GeoDate.
        See Also:
        GeoDate.isMissing()
      • getYRange

        SoTRange getYRange()
        Returns the range of the Y coordinates.
        See Also:
        getXRange()
      • addPropertyChangeListener

        void addPropertyChangeListener(java.beans.PropertyChangeListener l)
        Add a PropertyChangeListener to the listener list.
      • removePropertyChangeListener

        void removePropertyChangeListener(java.beans.PropertyChangeListener l)
        Remove a PropertyChangeListener from the listener list.

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.