Package swingtree
Enum Class UI.Editability
- All Implemented Interfaces:
Serializable,Comparable<UI.Editability>,Constable,UIEnum<UI.Editability>
- Enclosing class:
UI
@Immutable
public static enum UI.Editability
extends Enum<UI.Editability>
implements UIEnum<UI.Editability>
Defines whether the user may edit the cells of a
JTable or only read them.
Note that permitting edits is only half of what an editable table needs: the
data also has to live in a mutable Var property, so that an
edit has somewhere to go. Data bound through a read only Val
yields a read only table whatever this says.
See UIFactoryMethods.table(swingtree.UI.Editability, TableMapDataSource) or
TableData.withEditability(swingtree.UI.Editability)
for more information about the usage of this enum.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanTells if the cells of a table using this setting may be edited by the user.static UI.EditabilityReturns the enum constant of this class with the specified name.static UI.Editability[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EDITABLE
-
READ_ONLY
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
isEditable
public final boolean isEditable()Tells if the cells of a table using this setting may be edited by the user.- Returns:
- True if this is
EDITABLE.
-