public enum CatViewSide extends java.lang.Enum<CatViewSide>
Enum Constant and Description |
---|
catBLCorner |
catBottomSide |
catBRCorner |
catLeftSide |
catRightSide |
catTLCorner |
catTopSide |
catTRCorner |
Modifier and Type | Method and Description |
---|---|
static CatViewSide |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CatViewSide[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatViewSide catTopSide
public static final CatViewSide catBottomSide
public static final CatViewSide catLeftSide
public static final CatViewSide catRightSide
public static final CatViewSide catTLCorner
public static final CatViewSide catTRCorner
public static final CatViewSide catBLCorner
public static final CatViewSide catBRCorner
public static CatViewSide[] values()
for (CatViewSide c : CatViewSide.values()) System.out.println(c);
public static CatViewSide 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