Class AppendAndReindexDataFrame<Row,​Column,​V>

  • All Implemented Interfaces:
    DataFrame<java.lang.Integer,​Column,​V>

    public class AppendAndReindexDataFrame<Row,​Column,​V>
    extends AbstractDataFrame<java.lang.Integer,​Column,​V>
    • Constructor Detail

      • AppendAndReindexDataFrame

        public AppendAndReindexDataFrame()
    • Method Detail

      • getRowClass

        public java.lang.Class getRowClass​(java.lang.Integer integer)
        Description copied from interface: DataFrame
        Returns the most specific superclass for all cell values in a row.
        Parameters:
        integer - the key of the row
        Returns:
        the common ancestor class of the object values in the row.
      • getColumnClass

        public java.lang.Class getColumnClass​(Column column)
        Description copied from interface: DataFrame
        Returns the most specific superclass for all cell values in a column
        Parameters:
        column - the key of the column
        Returns:
        the common ancestor class of the object values in the column.
      • getValueAt

        public V getValueAt​(java.lang.Integer integer,
                            Column column)
        Description copied from interface: DataFrame
        Returns the value for the cell at the intersection of the column key and row key.
        Parameters:
        integer - the row key whose value is to be queried
        column - the column key whose value is to be queried
        Returns:
        the value Object at the specified cell
      • getRow

        public Series<Column,​?> getRow​(java.lang.Integer integer)
        Description copied from interface: DataFrame
        Returns a series of all the values of a given row.
        Parameters:
        integer - the row key
        Returns:
        a Series object
      • getRowIndex

        public UniqueIndex<java.lang.Integer> getRowIndex()
        Description copied from interface: DataFrame
        Gets the index used to access the rows.
        Returns:
        the row index
      • getRowMap

        public java.util.NavigableMap<java.lang.Integer,​DataFrame<Row,​Column,​V>> getRowMap()
      • getColumnIndex

        public UniqueIndex<Column> getColumnIndex()
        Description copied from interface: DataFrame
        Gets the index used to access the columns.
        Returns:
        the column index