Package de.xima.fc.inbox.enums
Enum EProcessListView
- java.lang.Object
-
- java.lang.Enum<EProcessListView>
-
- de.xima.fc.inbox.enums.EProcessListView
-
- All Implemented Interfaces:
Serializable
,Comparable<EProcessListView>
public enum EProcessListView extends Enum<EProcessListView>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPOINTMENT_SCHEDULE
Appointment schedule view.PROCESS_GRID
Form specific inbox viewSTANDARD
Default inbox view
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getStyleClass()
static EProcessListView
valueOf(String name)
Returns the enum constant of this type with the specified name.static EProcessListView[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STANDARD
public static final EProcessListView STANDARD
Default inbox view
-
PROCESS_GRID
public static final EProcessListView PROCESS_GRID
Form specific inbox view
-
APPOINTMENT_SCHEDULE
public static final EProcessListView APPOINTMENT_SCHEDULE
Appointment schedule view.
-
-
Method Detail
-
values
public static EProcessListView[] 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 (EProcessListView c : EProcessListView.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EProcessListView valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getStyleClass
public String getStyleClass()
-
-