public static enum ClearableTableModel.ClearType extends java.lang.Enum<ClearableTableModel.ClearType>
ClearableTableModel.deleteAllRows(org.ka2ddo.yaac.util.ClearableTableModel.ClearType)
Enum Constant and Description |
---|
ALL
All records (both realtime and playback) should be deleted.
|
PLAYBACK
Only playback records (loaded from a log file) should be deleted.
|
REALTIME
Only realtime records should be deleted.
|
Modifier and Type | Method and Description |
---|---|
static ClearableTableModel.ClearType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClearableTableModel.ClearType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClearableTableModel.ClearType ALL
public static final ClearableTableModel.ClearType REALTIME
public static final ClearableTableModel.ClearType PLAYBACK
public static ClearableTableModel.ClearType[] values()
for (ClearableTableModel.ClearType c : ClearableTableModel.ClearType.values()) System.out.println(c);
public static ClearableTableModel.ClearType 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 null