Package org.hibernate.envers.query.projection.internal

Examples of org.hibernate.envers.query.projection.internal.PropertyAuditProjection


  /**
   * Projection on the maximum value
   */
  public AuditProjection max() {
    return new PropertyAuditProjection( propertyNameGetter, "max", false );
  }
View Full Code Here


  /**
   * Projection on the minimum value
   */
  public AuditProjection min() {
    return new PropertyAuditProjection( propertyNameGetter, "min", false );
  }
View Full Code Here

  /**
   * Projection counting the values
   */
  public AuditProjection count() {
    return new PropertyAuditProjection( propertyNameGetter, "count", false );
  }
View Full Code Here

  /**
   * Projection counting distinct values
   */
  public AuditProjection countDistinct() {
    return new PropertyAuditProjection( propertyNameGetter, "count", true );
  }
View Full Code Here

  /**
   * Projection on distinct values
   */
  public AuditProjection distinct() {
    return new PropertyAuditProjection( propertyNameGetter, null, true );
  }
View Full Code Here

  /**
   * Projection using a custom function
   */
  public AuditProjection function(String functionName) {
    return new PropertyAuditProjection( propertyNameGetter, functionName, false );
  }
View Full Code Here

  /**
   * Projection on the maximum value
   */
  public AuditProjection max() {
    return new PropertyAuditProjection( propertyNameGetter, "max", false );
  }
View Full Code Here

  /**
   * Projection on the minimum value
   */
  public AuditProjection min() {
    return new PropertyAuditProjection( propertyNameGetter, "min", false );
  }
View Full Code Here

  /**
   * Projection counting the values
   */
  public AuditProjection count() {
    return new PropertyAuditProjection( propertyNameGetter, "count", false );
  }
View Full Code Here

  /**
   * Projection counting distinct values
   */
  public AuditProjection countDistinct() {
    return new PropertyAuditProjection( propertyNameGetter, "count", true );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.envers.query.projection.internal.PropertyAuditProjection

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.