public static enum ColumnModelEvent.ID extends Enum<ColumnModelEvent.ID>
IColumnModelListener
,
ColumnModelEvent.getId()
Enum Constant and Description |
---|
COLUMN_ADDED
Used to indicate that a column was added to a column model.
|
COLUMN_INSERTED
Used to indicate that a column was inserted into a column model.
|
COLUMN_MOVED
Used to indicate that a column was moved inside the column model to which
in already belonged.
|
COLUMN_REMOVED
Used to indicate that a column was removed from a column model.
|
Modifier and Type | Method and Description |
---|---|
static ColumnModelEvent.ID |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnModelEvent.ID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnModelEvent.ID COLUMN_ADDED
public static final ColumnModelEvent.ID COLUMN_REMOVED
public static final ColumnModelEvent.ID COLUMN_INSERTED
public static final ColumnModelEvent.ID COLUMN_MOVED
public static ColumnModelEvent.ID[] values()
for (ColumnModelEvent.ID c : ColumnModelEvent.ID.values()) System.out.println(c);
public static ColumnModelEvent.ID valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.