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