Package org.hibernate.search.backend

Examples of org.hibernate.search.backend.WorkType


    DocumentBuilder<Object> builder = builders.get( entityType );

    if ( builder == null ) {
      throw new IllegalArgumentException( entityType.getName() + " is not a mapped entity (don't forget to add @Indexed)" );
    }
    WorkType type;
    if ( id == null ) {
      type = WorkType.PURGE_ALL;
    }
    else {
      type = WorkType.PURGE;
View Full Code Here

TOP

Related Classes of org.hibernate.search.backend.WorkType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.