Uses of Class
ch.aplu.jcardgame.Hand.SortType

Packages that use Hand.SortType
ch.aplu.jcardgame Addon package of the JDroidLib framework for developing card game applications. 
 

Uses of Hand.SortType in ch.aplu.jcardgame
 

Methods in ch.aplu.jcardgame that return Hand.SortType
 Hand.SortType Hand.getSortType()
          Returns the compare type for cards used for sorting.
static Hand.SortType Hand.SortType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Hand.SortType[] Hand.SortType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in ch.aplu.jcardgame with parameters of type Hand.SortType
 int Hand.getMaxPosition(Hand.SortType sortType)
          Compares the cards in the card list using the given compare type.
 Card Hand.reverseSort(Hand.SortType sortType, boolean doDraw)
          Sorts the card list with given sort type and reverses the list.
 void Hand.setSortType(Hand.SortType sortType)
          Sets the compare type of cards used for sorting to one of the enumeration values defined in the SortType enumeration.
 Card Hand.sort(Hand.SortType sortType, boolean doDraw)
          Sorts the card list with given sort type.