public static enum BindableTableModel.BindType extends Enum<BindableTableModel.BindType>
| Enum Constant and Description |
|---|
BIND
bind declared only
|
BINDALL
bind inherited
|
NONE
don't bind
|
| Modifier and Type | Method and Description |
|---|---|
static BindableTableModel.BindType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BindableTableModel.BindType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindableTableModel.BindType NONE
public static final BindableTableModel.BindType BIND
public static final BindableTableModel.BindType BINDALL
public static BindableTableModel.BindType[] values()
for (BindableTableModel.BindType c : BindableTableModel.BindType.values()) System.out.println(c);
public static BindableTableModel.BindType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullTentackle - a domain driven enterprise framework