Enum AgencyEstateTable.Column
- java.lang.Object
-
- java.lang.Enum<AgencyEstateTable.Column>
-
- com.openindex.openestate.tool.agency.AgencyEstateTable.Column
-
- All Implemented Interfaces:
AbstractTable.Column,Serializable,Comparable<AgencyEstateTable.Column>
- Enclosing class:
- AgencyEstateTable<R extends AgencyEstateTable.Row>
public static enum AgencyEstateTable.Column extends Enum<AgencyEstateTable.Column> implements AbstractTable.Column
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIONAPARTMENT_NRAREAAVAILABLE_FROMAVAILABLE_UNTILCHANGE_TIMECITYCONVENTIONEDCOUNTRYDISTRICTFLOORIDNRPOSTALCODEPRICEREGIONROOMSSERVICE_CHARGESSTATUSSTREETTITLETYPE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description TableCellEditorgetCellEditor()TableCellRenderergetCellRenderer()Class<?>getColumnClass()StringgetColumnId()StringgetColumnName()ComparatorgetComparator()booleanisEditable()booleanisHideable()booleanisSortable()booleanisVisibleByDefault()static AgencyEstateTable.ColumnvalueOf(String name)Returns the enum constant of this type with the specified name.static AgencyEstateTable.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 AgencyEstateTable.Column ID
-
NR
public static final AgencyEstateTable.Column NR
-
TYPE
public static final AgencyEstateTable.Column TYPE
-
ACTION
public static final AgencyEstateTable.Column ACTION
-
PRICE
public static final AgencyEstateTable.Column PRICE
-
SERVICE_CHARGES
public static final AgencyEstateTable.Column SERVICE_CHARGES
-
AREA
public static final AgencyEstateTable.Column AREA
-
ROOMS
public static final AgencyEstateTable.Column ROOMS
-
TITLE
public static final AgencyEstateTable.Column TITLE
-
STREET
public static final AgencyEstateTable.Column STREET
-
POSTALCODE
public static final AgencyEstateTable.Column POSTALCODE
-
CITY
public static final AgencyEstateTable.Column CITY
-
DISTRICT
public static final AgencyEstateTable.Column DISTRICT
-
REGION
public static final AgencyEstateTable.Column REGION
-
COUNTRY
public static final AgencyEstateTable.Column COUNTRY
-
STATUS
public static final AgencyEstateTable.Column STATUS
-
CONVENTIONED
public static final AgencyEstateTable.Column CONVENTIONED
-
FLOOR
public static final AgencyEstateTable.Column FLOOR
-
APARTMENT_NR
public static final AgencyEstateTable.Column APARTMENT_NR
-
AVAILABLE_FROM
public static final AgencyEstateTable.Column AVAILABLE_FROM
-
AVAILABLE_UNTIL
public static final AgencyEstateTable.Column AVAILABLE_UNTIL
-
CHANGE_TIME
public static final AgencyEstateTable.Column CHANGE_TIME
-
-
Method Detail
-
values
public static AgencyEstateTable.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 (AgencyEstateTable.Column c : AgencyEstateTable.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 AgencyEstateTable.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:
getCellEditorin interfaceAbstractTable.Column
-
getCellRenderer
public TableCellRenderer getCellRenderer()
- Specified by:
getCellRendererin interfaceAbstractTable.Column
-
getColumnClass
public Class<?> getColumnClass()
- Specified by:
getColumnClassin interfaceAbstractTable.Column
-
getColumnName
public String getColumnName()
- Specified by:
getColumnNamein interfaceAbstractTable.Column
-
getColumnId
public String getColumnId()
- Specified by:
getColumnIdin interfaceAbstractTable.Column
-
getComparator
public Comparator getComparator()
- Specified by:
getComparatorin interfaceAbstractTable.Column
-
isEditable
public boolean isEditable()
- Specified by:
isEditablein interfaceAbstractTable.Column
-
isHideable
public boolean isHideable()
- Specified by:
isHideablein interfaceAbstractTable.Column
-
isSortable
public boolean isSortable()
- Specified by:
isSortablein interfaceAbstractTable.Column
-
isVisibleByDefault
public boolean isVisibleByDefault()
- Specified by:
isVisibleByDefaultin interfaceAbstractTable.Column
-
-