com.testdroid.api.dto.Operand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testdroid-api Show documentation
Show all versions of testdroid-api Show documentation
The Testdroid API library for Java
The newest version!
package com.testdroid.api.dto;
/**
* @author Damian Sniezek
*/
public enum Operand {
GT(2),
AFTER(2),
LT(2),
BEFORE(2),
ON(2),
EQ(2),
NOTEQ(2),
CONTAINS(2),
LIKE(2),
NOTLIKE(2),
EMPTY(1),
ISNULL(1),
ISNOTNULL(1),
IN(Integer.MAX_VALUE),
NOTIN(Integer.MAX_VALUE),
INORNULL(Integer.MAX_VALUE),
BEFOREORNULL(2),
BEFOREOREQUAL(2),
AFTERORNULL(2),
AFTEROREQUAL(2);
private final int arity;
Operand(Integer arity) {
this.arity = arity;
}
public Integer getArity() {
return arity;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy