org.hibernate.search.annotations
Annotation Type Analyzer
@Retention(value=RUNTIME)
@Target(value={TYPE,FIELD,METHOD})
@Documented
public @interface Analyzer
Define an Analyzer for a given entity, method, field or Field
The order of precedence is as such:
- @Field
- field / method
- entity
- default
Either describe an explicit implementation through the impl
parameter
or use an external @AnalyzerDef definition through the def
parameter
- Author:
- Emmanuel Bernard
impl
public abstract Class<?> impl
- Default:
- void.class
definition
public abstract String definition
- Default:
- ""
Copyright © 2006-2012 Red Hat Middleware, LLC. All Rights Reserved