Uses of Enum Class
me.ramendev.expokert.Pip

Packages that use Pip
Package
Description
Provides classic that implement playing cards, game mechanics and games related to playing cards.
  • Uses of Pip in me.ramendev.expokert

    Methods in me.ramendev.expokert that return Pip
    Modifier and Type
    Method
    Description
    static Pip
    Pip.from(char character)
    Returns the pip that is notated with the provided character.
    static Pip
    Pip.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static Pip[]
    Pip.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in me.ramendev.expokert with parameters of type Pip
    Modifier and Type
    Method
    Description
    final boolean
    Pip.isNextTo(Pip pip)
    Checks if the given pip is directly next to the given pip in the default pip order.
    Constructors in me.ramendev.expokert with parameters of type Pip
    Modifier
    Constructor
    Description
     
    Card(Pip pip, Suit suit)
    Creates a card from the given pip and suit.