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