public enum ECityHallBoard extends Enum<ECityHallBoard> implements INoticeBoardDestinction
| Enum Constant and Description |
|---|
ALDERMAN_OFFICE |
MAYORS_OFFICE |
MEETING_ROOM |
NOTICE_BOARD |
| Modifier and Type | Method and Description |
|---|---|
static ECityHallBoard |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ECityHallBoard[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECityHallBoard NOTICE_BOARD
public static final ECityHallBoard MAYORS_OFFICE
public static final ECityHallBoard ALDERMAN_OFFICE
public static final ECityHallBoard MEETING_ROOM
public static ECityHallBoard[] values()
for (ECityHallBoard c : ECityHallBoard.values()) System.out.println(c);
public static ECityHallBoard valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2011-2015 Sahits GmbH. All Rights Reserved.