public enum RoomPenaltyType extends Enum<RoomPenaltyType>
Enum Constant and Description |
---|
ROOM_EXCLUSIVE |
Modifier and Type | Method and Description |
---|---|
static RoomPenaltyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoomPenaltyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoomPenaltyType ROOM_EXCLUSIVE
public static RoomPenaltyType[] values()
for (RoomPenaltyType c : RoomPenaltyType.values()) System.out.println(c);
public static RoomPenaltyType 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 © 2006-2014 JBoss by Red Hat. All Rights Reserved.