SimpleField Interface
Implements
public interface SimpleField
implements Annotation
An annotation that directs buildSearchFields(Class<?> model, FieldBuilderOptions options) to turn the field or method into a non-searchable SearchField.
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract boolean |
isFacetable()
Indicates if the field or method should generate as a facetable SearchField. |
abstract boolean |
isFilterable()
Indicates if the field or method should generate as a filterable SearchField. |
abstract boolean |
isHidden()
Indicates if the field or method should generate as a hidden SearchField. |
abstract boolean |
isKey()
Indicates if the field or method should generate as a key SearchField. |
abstract boolean |
isSortable()
Indicates if the field or method should generate as a sortable SearchField. |
Method Details
isFacetable
public abstract boolean isFacetable()
Indicates if the field or method should generate as a facetable SearchField.
Returns:
isFilterable
public abstract boolean isFilterable()
Indicates if the field or method should generate as a filterable SearchField.
Returns:
isHidden
public abstract boolean isHidden()
Indicates if the field or method should generate as a hidden SearchField.
Returns:
isKey
public abstract boolean isKey()
Indicates if the field or method should generate as a key SearchField.
Returns:
isSortable
public abstract boolean isSortable()
Indicates if the field or method should generate as a sortable SearchField.
Returns:
Applies to
Azure SDK for Java