Enum TimeTablePanel.HeaderColumnKey
- java.lang.Object
-
- java.lang.Enum<TimeTablePanel.HeaderColumnKey>
-
- ai.timefold.solver.examples.common.swingui.timetable.TimeTablePanel.HeaderColumnKey
-
- All Implemented Interfaces:
Serializable,Comparable<TimeTablePanel.HeaderColumnKey>
- Enclosing class:
- TimeTablePanel<XObject,YObject>
public static enum TimeTablePanel.HeaderColumnKey extends Enum<TimeTablePanel.HeaderColumnKey>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimeTablePanel.HeaderColumnKeyvalueOf(String name)Returns the enum constant of this type with the specified name.static TimeTablePanel.HeaderColumnKey[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HEADER_COLUMN_GROUP2
public static final TimeTablePanel.HeaderColumnKey HEADER_COLUMN_GROUP2
-
HEADER_COLUMN_GROUP1
public static final TimeTablePanel.HeaderColumnKey HEADER_COLUMN_GROUP1
-
HEADER_COLUMN
public static final TimeTablePanel.HeaderColumnKey HEADER_COLUMN
-
HEADER_COLUMN_EXTRA_PROPERTY_1
public static final TimeTablePanel.HeaderColumnKey HEADER_COLUMN_EXTRA_PROPERTY_1
-
HEADER_COLUMN_EXTRA_PROPERTY_2
public static final TimeTablePanel.HeaderColumnKey HEADER_COLUMN_EXTRA_PROPERTY_2
-
HEADER_COLUMN_EXTRA_PROPERTY_3
public static final TimeTablePanel.HeaderColumnKey HEADER_COLUMN_EXTRA_PROPERTY_3
-
HEADER_COLUMN_EXTRA_PROPERTY_4
public static final TimeTablePanel.HeaderColumnKey HEADER_COLUMN_EXTRA_PROPERTY_4
-
HEADER_COLUMN_EXTRA_PROPERTY_5
public static final TimeTablePanel.HeaderColumnKey HEADER_COLUMN_EXTRA_PROPERTY_5
-
TRAILING_HEADER_COLUMN
public static final TimeTablePanel.HeaderColumnKey TRAILING_HEADER_COLUMN
-
-
Method Detail
-
values
public static TimeTablePanel.HeaderColumnKey[] 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 (TimeTablePanel.HeaderColumnKey c : TimeTablePanel.HeaderColumnKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeTablePanel.HeaderColumnKey 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
-
-