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