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