public enum CellStatus extends java.lang.Enum<CellStatus>
| Enum Constant and Description |
|---|
empty
пустая клетка
|
hit
в клетке располагается подбитая часть корабля
|
miss
по клетке был совершен выстрел, но корабля в ней не оказалось
|
ship
в клетке располагается корабль
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
in(CellStatus... statuses)
Проверить что данный статус принадлежит множеству статусов.
|
static CellStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CellStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellStatus empty
public static final CellStatus ship
public static final CellStatus hit
public static final CellStatus miss
public static CellStatus[] values()
for (CellStatus c : CellStatus.values()) System.out.println(c);
public static CellStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean in(CellStatus... statuses)
statuses - множество статусов.