Class RowColumn

    • Field Detail

    • Constructor Detail

      • RowColumn

        public RowColumn()
        Constructs a RowColumn with row set to Bytes.EMPTY and column set to Column.EMPTY
      • RowColumn

        public RowColumn​(Bytes row)
        Constructs a RowColumn with only a row. Column will be set to Column.EMPTY
        Parameters:
        row - Bytes Row
      • RowColumn

        public RowColumn​(CharSequence row)
        Constructs a RowColumn with only a row. Column will be set to Column.EMPTY
        Parameters:
        row - (will be UTF-8 encoded)
      • RowColumn

        public RowColumn​(Bytes row,
                         Column col)
        Constructs a RowColumn
        Parameters:
        row - Bytes Row
        col - Column
      • RowColumn

        public RowColumn​(CharSequence row,
                         Column col)
        Constructs a RowColumn
        Parameters:
        row - Row String (will be UTF-8 encoded)
        col - Column
    • Method Detail

      • getRow

        public Bytes getRow()
        Retrieves Row in RowColumn
        Returns:
        Row
      • getsRow

        public String getsRow()
        Retrieves Row in RowColumn as a String using UTF-8 encoding.
        Returns:
        Row
      • getColumn

        public Column getColumn()
        Retrieves Column in RowColumn
        Returns:
        Column
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • following

        public RowColumn following()
        Returns a RowColumn following the current one
        Returns:
        RowColumn following this one