Uses of Interface
inonit.domain.game.card.Sort.Order

Packages that use Sort.Order
inonit.domain.game.card A set of classes representing constructs commonly used in card games. 
 

Uses of Sort.Order in inonit.domain.game.card
 

Classes in inonit.domain.game.card that implement Sort.Order
static class Card.Order
          A logical ordering of a set of Cards.
 

Methods in inonit.domain.game.card that return Sort.Order
static Sort.Order Sort.reverse(Sort.Order order)
          Returns an Order which is the reverse of the given Order.
static Sort.Order Sort.compose(Sort.Order[] orders)
          Returns an Order which is a composite of the given Orders.
 Sort.Order Rank.Order.getAscendingOrder()
          Returns a Sort.Order which will sort a set of Cards (not Ranks) into ascending order, as specified by this Rank.Order.
 Sort.Order Rank.Order.getDescendingOrder()
          Returns a Sort.Order which will sort a set of Cards (not Ranks) into descending order, as specified by this Rank.Order.
 

Methods in inonit.domain.game.card with parameters of type Sort.Order
static Sort.Order Sort.reverse(Sort.Order order)
          Returns an Order which is the reverse of the given Order.
static Sort.Order Sort.compose(Sort.Order[] orders)
          Returns an Order which is a composite of the given Orders.
static java.lang.Object[] Sort.sort(java.lang.Object[] objects, Sort.Order order)
          Sorts an array into the given Sort.Order.
 CardArray CardArray.sort(Sort.Order order)
          Sorts the Cards in this CardArray into the given Sort.Order.