Used to perform Get operations on a single row.
To get everything for a row, instantiate a Get object with the row to get. To further define the scope of what to get, perform additional methods as outlined below.
To get all columns from specific families, execute {@link #addFamily(byte[]) addFamily}for each family to retrieve.
To get specific columns, execute {@link #addColumn(byte[],byte[]) addColumn}for each column to retrieve.
To only retrieve columns within a specific range of version timestamps, execute {@link #setTimeRange(long,long) setTimeRange}.
To only retrieve columns with a specific timestamp, execute {@link #setTimeStamp(long) setTimestamp}.
To limit the number of versions of each column to be returned, execute {@link #setMaxVersions(int) setMaxVersions}.
To add a filter, execute {@link #setFilter(Filter) setFilter}.