@Retention(value=RUNTIME)
@Target(value={METHOD,FIELD})
@Documented
public @interface Field
Modifier and Type | Fields and Description |
---|---|
static java.lang.String |
DEFAULT_NULL_TOKEN
Value for the
indexNullAs() parameter indicating that null
values should be indexed using the null token given through the
org.hibernate.search.cfg.Environment#DEFAULT_NULL_TOKEN configuration
property. |
static java.lang.String |
DO_NOT_INDEX_NULL
Default value for the
indexNullAs() parameter. |
Modifier and Type | Optional Element and Description |
---|---|
java.lang.String |
indexNullAs |
java.lang.String |
name |
public static final java.lang.String DO_NOT_INDEX_NULL
indexNullAs()
parameter. Indicates that
null
values should not be indexed.public static final java.lang.String DEFAULT_NULL_TOKEN
indexNullAs()
parameter indicating that null
values should be indexed using the null token given through the
org.hibernate.search.cfg.Environment#DEFAULT_NULL_TOKEN configuration
property. If no value is given for that property, the token _null_
will be used.