类 TableStorageResult


  • public class TableStorageResult
    extends Object
    Single row result of a GetRow, BatchGetRow or Scan operation.
    • 构造器详细资料

      • TableStorageResult

        public TableStorageResult​(String rowkey,
                                  List<TableStorageCell> cells)
        Constructs a result object with rowkey and cells.
        参数:
        rowkey - The rowkey set to this object.
        cells -
    • 方法详细资料

      • getRowkey

        public String getRowkey()
        Get the rowkey of this object.
        返回:
        The rowkey of this object.
      • getCells

        public List<TableStorageCell> getCells()
        The list of cells of this object.
        返回:
        The list of cells of this object.
      • toString

        public String toString()
        Convert this object to string.
        覆盖:
        toString 在类中 Object
        返回:
        The string represent this object.