public static enum Room.InheritanceType extends java.lang.Enum<Room.InheritanceType>
Enum Constant and Description |
---|
COPY |
IGNORE |
INCREMENT_BY |
NEXT_IN_LIST |
Modifier and Type | Method and Description |
---|---|
static Room.InheritanceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Room.InheritanceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Room.InheritanceType COPY
public static final Room.InheritanceType IGNORE
public static final Room.InheritanceType INCREMENT_BY
public static final Room.InheritanceType NEXT_IN_LIST
public static Room.InheritanceType[] values()
for (Room.InheritanceType c : Room.InheritanceType.values()) System.out.println(c);
public static Room.InheritanceType 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 null