javax.jcr.query.qom.Not Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/*
* Copyright 2009 Day Management AG, Switzerland. All rights reserved.
*/
package javax.jcr.query.qom;
/**
* Performs a logical negation of another constraint.
*
* To satisfy the Not
constraint, the node-tuple must not
* satisfy {@link #getConstraint constraint}.
*
* @since JCR 2.0
*/
public interface Not
extends Constraint {
/**
* Gets the constraint negated by this Not
constraint.
*
* @return the constraint; non-null
*/
public Constraint getConstraint();
}