public static abstract class

ASTUtil.IncludePredicate

extends Object
implements ASTUtil.FilterPredicate
java.lang.Object
   ↳ org.hibernate.hql.ast.util.ASTUtil.IncludePredicate

Class Overview

A predicate that uses inclusion, rather than exclusion semantics.

Summary

Public Constructors
ASTUtil.IncludePredicate()
Public Methods
final boolean exclude(AST node)
Returns true if the node should be filtered out.
abstract boolean include(AST node)
[Expand]
Inherited Methods
From class java.lang.Object
From interface org.hibernate.hql.ast.util.ASTUtil.FilterPredicate

Public Constructors

public ASTUtil.IncludePredicate ()

Public Methods

public final boolean exclude (AST node)

Returns true if the node should be filtered out.

Parameters
node The node.
Returns
  • true if the node should be filtered out, false to keep the node.

public abstract boolean include (AST node)