com.netflix.astyanax.model
Interface Row<K,C>

Type Parameters:
K -
C -

public interface Row<K,C>

Instance of a row with key type K and column name type C. Child columns can be either standard columns or super columns


Method Summary
 ColumnList<C> getColumns()
          Child columns of the row.
 K getKey()
          Return the key value
 java.nio.ByteBuffer getRawKey()
          Return the raw byte buffer for this key
 

Method Detail

getKey

K getKey()
Return the key value

Returns:

getRawKey

java.nio.ByteBuffer getRawKey()
Return the raw byte buffer for this key

Returns:

getColumns

ColumnList<C> getColumns()
Child columns of the row. Note that if a ColumnPath was provided to a query these will be the columns at the column path location and not the columns at the root of the row.

Returns: