org.axonframework.eventstore.jdbc.criteria
Class NotEquals
java.lang.Object
org.axonframework.eventstore.jdbc.criteria.JdbcCriteria
org.axonframework.eventstore.jdbc.criteria.NotEquals
- All Implemented Interfaces:
- Criteria
public class NotEquals
- extends JdbcCriteria
Implementations of the NOT EQUALS operator for a Jdbc Event Store.
- Since:
- 2.2
- Author:
- Allard Buijze, Kristian Rosenvold
Constructor Summary |
NotEquals(JdbcProperty property,
Object expression)
Initializes a NOT EQUALS operator where the given property must not be equal to the given
expression . |
Methods inherited from class org.axonframework.eventstore.jdbc.criteria.JdbcCriteria |
and, or |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
NotEquals
public NotEquals(JdbcProperty property,
Object expression)
- Initializes a NOT EQUALS operator where the given
property
must not be equal to the given
expression
.
- Parameters:
property
- The property to matchexpression
- The expression to match against. May be null
.
parse
public void parse(String entryKey,
StringBuilder whereClause,
ParameterRegistry parameters)
- Description copied from class:
JdbcCriteria
- Parses the criteria to a JPA compatible where clause and parameter values.
- Specified by:
parse
in class JdbcCriteria
- Parameters:
entryKey
- The variable assigned to the entry in the whereClausewhereClause
- The buffer to write the where clause to.parameters
- The registry where parameters and assigned values can be registered.
Copyright © 2010-2016. All Rights Reserved.