org.axonframework.eventstore.jdbc.criteria
Class BinaryOperator

java.lang.Object
  extended by org.axonframework.eventstore.jdbc.criteria.JdbcCriteria
      extended by org.axonframework.eventstore.jdbc.criteria.BinaryOperator
All Implemented Interfaces:
Criteria

public class BinaryOperator
extends JdbcCriteria

Implementation of a binary operator for the Jdbc Event Store.

Since:
2.2
Author:
Allard Buijze, Kristian Rosenvold

Constructor Summary
BinaryOperator(JdbcCriteria criteria1, String operator, JdbcCriteria criteria2)
          Initializes a binary operator that matches against two criteria
 
Method Summary
 void parse(String entryKey, StringBuilder whereClause, ParameterRegistry parameters)
          Parses the criteria to a JPA compatible where clause and parameter values.
 
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
 

Constructor Detail

BinaryOperator

public BinaryOperator(JdbcCriteria criteria1,
                      String operator,
                      JdbcCriteria criteria2)
Initializes a binary operator that matches against two criteria

Parameters:
criteria1 - One of the criteria to match
operator - The binary operator to check the criteria with
criteria2 - One of the criteria to match
Method Detail

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 whereClause
whereClause - 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.