public static enum Column.Searchable extends Enum<Column.Searchable>
Enum Constant and Description |
---|
ALL_EXCEPT_LIKE
The column is searchable only when NOT using LIKE.
|
LIKE_ONLY
The column is searchable only when using LIKE.
|
SEARCHABLE
The column is searchable.
|
UNSEARCHABLE
The column is not searchable.
|
Modifier and Type | Field and Description |
---|---|
static Column.Searchable |
DEFAULT_VALUE
The default value for the searchable property.
|
Modifier and Type | Method and Description |
---|---|
static Column.Searchable |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Column.Searchable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Column.Searchable ALL_EXCEPT_LIKE
public static final Column.Searchable LIKE_ONLY
public static final Column.Searchable SEARCHABLE
public static final Column.Searchable UNSEARCHABLE
public static final Column.Searchable DEFAULT_VALUE
public static Column.Searchable[] values()
for (Column.Searchable c : Column.Searchable.values()) System.out.println(c);
public static Column.Searchable 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 nullCopyright © 2013–2019. All rights reserved.