Uses of Enum Class
pinkGuards.Arma

Packages that use Arma
Package
Description
 
  • Uses of Arma in pinkGuards

    Subclasses with type arguments of type Arma in pinkGuards
    Modifier and Type
    Class
    Description
    enum 
    Enumerado que representa las armas utilizadas por los Pink Guards.
    Methods in pinkGuards that return Arma
    Modifier and Type
    Method
    Description
    Soldier.getArma()
    Obtiene el arma asignada al Soldier.
    static Arma
    Arma.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static Arma[]
    Arma.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in pinkGuards with parameters of type Arma
    Modifier and Type
    Method
    Description
    void
    Soldier.setArma(Arma arma)
    Establece el arma del Soldier.
    Constructors in pinkGuards with parameters of type Arma
    Modifier
    Constructor
    Description
     
    Soldier(int id, String nombre, Arma arma, int municion, PinkGuard supervisor)
    Crea un nuevo Soldier.