Ejemplo n.º 1
0
 @Override
 public ArelNodeGrouping doesNotMatchAll(Object others) {
   return ArelPredications.doesNotMatchAll(this, others);
 }
Ejemplo n.º 2
0
 @Override
 public ArelNodeGrouping doesNotMatchAny(Object others, Object escape) {
   return ArelPredications.doesNotMatchAny(this, others, escape);
 }
Ejemplo n.º 3
0
 @Override
 public ArelNode between(Object begin, Object end, boolean inclusive) {
   return ArelPredications.between(this, begin, end, inclusive);
 }
Ejemplo n.º 4
0
 @Override
 public ArelNodeDoesNotMatch doesNotMatch(Object right, Object escape) {
   return ArelPredications.doesNotMatch(this, right, escape);
 }
Ejemplo n.º 5
0
 @Override
 public ArelNodeGrouping notInAll(Object others) {
   return ArelPredications.notInAll(this, others);
 }
Ejemplo n.º 6
0
 @Override
 public ArelNode between(Object begin, Object end) {
   return ArelPredications.between(this, begin, end);
 }
Ejemplo n.º 7
0
 @Override
 public ArelNodeGrouping matchesAny(Object others, Object escape) {
   return ArelPredications.matchesAny(this, others);
 }
Ejemplo n.º 8
0
 @Override
 public ArelNodeGreaterThanOrEqual gteq(Object right) {
   return ArelPredications.gteq(this, right);
 }
Ejemplo n.º 9
0
 @Override
 public ArelNodeMatches matches(Object right, Object escape) {
   return ArelPredications.matches(this, right);
 }
Ejemplo n.º 10
0
 @Override
 public ArelNodeGrouping matchesAll(Object others) {
   return ArelPredications.matchesAll(this, others);
 }
Ejemplo n.º 11
0
 @Override
 public ArelNodeLessThanOrEqual lteq(Object right) {
   return ArelPredications.lteq(this, right);
 }
Ejemplo n.º 12
0
 @Override
 public ArelNodeLessThan lt(Object right) {
   return ArelPredications.lt(this, right);
 }
Ejemplo n.º 13
0
 @Override
 public ArelNodeIn in(Object other) {
   return ArelPredications.in(this, other);
 }
Ejemplo n.º 14
0
 @Override
 public ArelNodeEquality eq(Object other) {
   return ArelPredications.eq(this, other);
 }
Ejemplo n.º 15
0
 @Override
 public ArelNodeNotIn notIn(Object other) {
   return ArelPredications.notIn(this, other);
 }
Ejemplo n.º 16
0
 @Override
 public ArelNodeGrouping eqAny(Object others) {
   return ArelPredications.eqAny(this, others);
 }
Ejemplo n.º 17
0
 @Override
 public ArelNodeGreaterThan gt(Object right) {
   return ArelPredications.gt(this, right);
 }