Enum AgencyExportLogTable.Column
- java.lang.Object
-
- java.lang.Enum<AgencyExportLogTable.Column>
-
- com.openindex.openestate.tool.agency.AgencyExportLogTable.Column
-
- All Implemented Interfaces:
AbstractTable.Column
,Serializable
,Comparable<AgencyExportLogTable.Column>
- Enclosing class:
- AgencyExportLogTable<R extends AgencyExportLogTable.Row>
public static enum AgencyExportLogTable.Column extends Enum<AgencyExportLogTable.Column> implements AbstractTable.Column
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COUNT_DELETES
COUNT_ERRORS
COUNT_INSERTS
COUNT_NOTICES
COUNT_UPDATES
COUNT_WARNINGS
ID
TIME
TITLE
TRANSFER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description TableCellEditor
getCellEditor()
TableCellRenderer
getCellRenderer()
Class<?>
getColumnClass()
String
getColumnId()
String
getColumnName()
Comparator
getComparator()
boolean
isEditable()
boolean
isHideable()
boolean
isSortable()
boolean
isVisibleByDefault()
static AgencyExportLogTable.Column
valueOf(String name)
Returns the enum constant of this type with the specified name.static AgencyExportLogTable.Column[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ID
public static final AgencyExportLogTable.Column ID
-
TIME
public static final AgencyExportLogTable.Column TIME
-
TITLE
public static final AgencyExportLogTable.Column TITLE
-
TRANSFER
public static final AgencyExportLogTable.Column TRANSFER
-
COUNT_INSERTS
public static final AgencyExportLogTable.Column COUNT_INSERTS
-
COUNT_UPDATES
public static final AgencyExportLogTable.Column COUNT_UPDATES
-
COUNT_DELETES
public static final AgencyExportLogTable.Column COUNT_DELETES
-
COUNT_ERRORS
public static final AgencyExportLogTable.Column COUNT_ERRORS
-
COUNT_WARNINGS
public static final AgencyExportLogTable.Column COUNT_WARNINGS
-
COUNT_NOTICES
public static final AgencyExportLogTable.Column COUNT_NOTICES
-
-
Method Detail
-
values
public static AgencyExportLogTable.Column[] 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 (AgencyExportLogTable.Column c : AgencyExportLogTable.Column.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AgencyExportLogTable.Column 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
-
getCellEditor
public TableCellEditor getCellEditor()
- Specified by:
getCellEditor
in interfaceAbstractTable.Column
-
getCellRenderer
public TableCellRenderer getCellRenderer()
- Specified by:
getCellRenderer
in interfaceAbstractTable.Column
-
getColumnClass
public Class<?> getColumnClass()
- Specified by:
getColumnClass
in interfaceAbstractTable.Column
-
getColumnName
public String getColumnName()
- Specified by:
getColumnName
in interfaceAbstractTable.Column
-
getColumnId
public String getColumnId()
- Specified by:
getColumnId
in interfaceAbstractTable.Column
-
getComparator
public Comparator getComparator()
- Specified by:
getComparator
in interfaceAbstractTable.Column
-
isEditable
public boolean isEditable()
- Specified by:
isEditable
in interfaceAbstractTable.Column
-
isHideable
public boolean isHideable()
- Specified by:
isHideable
in interfaceAbstractTable.Column
-
isSortable
public boolean isSortable()
- Specified by:
isSortable
in interfaceAbstractTable.Column
-
isVisibleByDefault
public boolean isVisibleByDefault()
- Specified by:
isVisibleByDefault
in interfaceAbstractTable.Column
-
-