org.peace_tools.core
Enum ViewFactory.ViewType
java.lang.Object
java.lang.Enum<ViewFactory.ViewType>
org.peace_tools.core.ViewFactory.ViewType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ViewFactory.ViewType>
- Enclosing class:
- ViewFactory
public static enum ViewFactory.ViewType
- extends java.lang.Enum<ViewFactory.ViewType>
Set of enumeration values to identify the different types of
views that this factory can create.
Method Summary |
static ViewFactory.ViewType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ViewFactory.ViewType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
EST_FILE
public static final ViewFactory.ViewType EST_FILE
MST_FILE
public static final ViewFactory.ViewType MST_FILE
CLUSTER_FILE
public static final ViewFactory.ViewType CLUSTER_FILE
CLUSTER_SUMMARY
public static final ViewFactory.ViewType CLUSTER_SUMMARY
OVERLAP_VIEW
public static final ViewFactory.ViewType OVERLAP_VIEW
HTML_VIEW
public static final ViewFactory.ViewType HTML_VIEW
TEXT_VEIW
public static final ViewFactory.ViewType TEXT_VEIW
DEFAULT_VIEW
public static final ViewFactory.ViewType DEFAULT_VIEW
DATASET_TREE
public static final ViewFactory.ViewType DATASET_TREE
DATASET_FILE
public static final ViewFactory.ViewType DATASET_FILE
JOB_LIST
public static final ViewFactory.ViewType JOB_LIST
SERVER_LIST
public static final ViewFactory.ViewType SERVER_LIST
USER_LOGS
public static final ViewFactory.ViewType USER_LOGS
PROGRAMMER_LOGS
public static final ViewFactory.ViewType PROGRAMMER_LOGS
values
public static ViewFactory.ViewType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ViewFactory.ViewType c : ViewFactory.ViewType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ViewFactory.ViewType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null