|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Sort.Order | |
---|---|
org.apache.crunch.lib | Joining, sorting, aggregating, and other commonly used functionality. |
Uses of Sort.Order in org.apache.crunch.lib |
---|
Methods in org.apache.crunch.lib that return Sort.Order | |
---|---|
Sort.Order |
Sort.ColumnOrder.order()
|
static Sort.Order |
Sort.Order.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Sort.Order[] |
Sort.Order.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods in org.apache.crunch.lib with parameters of type Sort.Order | ||
---|---|---|
static Sort.ColumnOrder |
Sort.ColumnOrder.by(int column,
Sort.Order order)
|
|
static
|
Sort.sort(PCollection<T> collection,
int numReducers,
Sort.Order order)
Sorts the PCollection using the natural ordering of its elements in
the order specified using the given number of reducers. |
|
static
|
Sort.sort(PCollection<T> collection,
Sort.Order order)
Sorts the PCollection using the natural order of its elements with the given Order . |
|
static
|
Sort.sort(PTable<K,V> table,
int numReducers,
Sort.Order key)
Sorts the PTable using the natural ordering of its keys in the
order specified with a client-specified number of reducers. |
|
static
|
Sort.sort(PTable<K,V> table,
Sort.Order key)
Sorts the PTable using the natural ordering of its keys with the given Order . |
Constructors in org.apache.crunch.lib with parameters of type Sort.Order | |
---|---|
Sort.ColumnOrder(int column,
Sort.Order order)
|
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |