Enum ContactsEntryTable.Column
- java.lang.Object
-
- java.lang.Enum<ContactsEntryTable.Column>
-
- com.openindex.openestate.tool.contacts.ContactsEntryTable.Column
-
- All Implemented Interfaces:
AbstractTable.Column,Serializable,Comparable<ContactsEntryTable.Column>
- Enclosing class:
- ContactsEntryTable<R extends ContactsEntryTable.Row>
public static enum ContactsEntryTable.Column extends Enum<ContactsEntryTable.Column> implements AbstractTable.Column
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CITYCOMPANYCONTACTINGCOUNTRYDAY_OF_BIRTHFIRSTNAMEGROUPGROUP_IDIDLASTNAMELETTER_ADDRESSMAILMOBILEPHONEPOSTALCODEPUBLIC_IDREGIONSTATUSSTREET
-
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 ContactsEntryTable.ColumnvalueOf(String name)Returns the enum constant of this type with the specified name.static ContactsEntryTable.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 ContactsEntryTable.Column ID
-
PUBLIC_ID
public static final ContactsEntryTable.Column PUBLIC_ID
-
LASTNAME
public static final ContactsEntryTable.Column LASTNAME
-
FIRSTNAME
public static final ContactsEntryTable.Column FIRSTNAME
-
COMPANY
public static final ContactsEntryTable.Column COMPANY
-
STREET
public static final ContactsEntryTable.Column STREET
-
POSTALCODE
public static final ContactsEntryTable.Column POSTALCODE
-
CITY
public static final ContactsEntryTable.Column CITY
-
REGION
public static final ContactsEntryTable.Column REGION
-
COUNTRY
public static final ContactsEntryTable.Column COUNTRY
-
MAIL
public static final ContactsEntryTable.Column MAIL
-
PHONE
public static final ContactsEntryTable.Column PHONE
-
MOBILE
public static final ContactsEntryTable.Column MOBILE
-
DAY_OF_BIRTH
public static final ContactsEntryTable.Column DAY_OF_BIRTH
-
LETTER_ADDRESS
public static final ContactsEntryTable.Column LETTER_ADDRESS
-
GROUP
public static final ContactsEntryTable.Column GROUP
-
GROUP_ID
public static final ContactsEntryTable.Column GROUP_ID
-
STATUS
public static final ContactsEntryTable.Column STATUS
-
CONTACTING
public static final ContactsEntryTable.Column CONTACTING
-
-
Method Detail
-
values
public static ContactsEntryTable.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 (ContactsEntryTable.Column c : ContactsEntryTable.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 ContactsEntryTable.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
-
-