|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectatg.svc.repository.beans.KnowledgeQueryPredicateOperator
public class KnowledgeQueryPredicateOperator
This class holds the value of the KnowledgeQueryPredicate.operator property. That property is an "enumerated" type, meaning that it has a predefined set of allowed values. Each of those values has an associated String "tag", but the values themselves are instances of this class. The instances can be retrieved by calling the getter method corresonding to the desired value. Each value is a singleton, meaning that "==" and "equals" will have the same result when testing for equlity. The following describes which getter should be used to obtain a value representing a particular tag:
Tag | Getter |
---|---|
anyOf | getAnyOf() |
allOf | getAllOf() |
noneOf | getNoneOf() |
equal | getEqual() |
notEqual | getNotEqual() |
less | getLess() |
lesseq | getLesseq() |
greater | getGreater() |
greatereq | getGreatereq() |
starts | getStarts() |
ends | getEnds() |
contains | getContains() |
doesNotContain | getDoesNotContain() |
doesNotStartWith | getDoesNotStartWith() |
doesNotEndWith | getDoesNotEndWith() |
between | getBetween() |
within | getWithin() |
novalue | getNovalue() |
Constructor Summary | |
---|---|
KnowledgeQueryPredicateOperator()
|
|
KnowledgeQueryPredicateOperator(java.lang.String pTag,
java.lang.Object pValue)
|
Method Summary | |
---|---|
static KnowledgeQueryPredicateOperator |
getAllOf()
Returns the instance representing the String value "allOf" |
static KnowledgeQueryPredicateOperator |
getAnyOf()
Returns the instance representing the String value "anyOf" |
static KnowledgeQueryPredicateOperator |
getBetween()
Returns the instance representing the String value "between" |
static KnowledgeQueryPredicateOperator |
getContains()
Returns the instance representing the String value "contains" |
static KnowledgeQueryPredicateOperator |
getDoesNotContain()
Returns the instance representing the String value "doesNotContain" |
static KnowledgeQueryPredicateOperator |
getDoesNotEndWith()
Returns the instance representing the String value "doesNotEndWith" |
static KnowledgeQueryPredicateOperator |
getDoesNotStartWith()
Returns the instance representing the String value "doesNotStartWith" |
static KnowledgeQueryPredicateOperator |
getEnds()
Returns the instance representing the String value "ends" |
static KnowledgeQueryPredicateOperator |
getEqual()
Returns the instance representing the String value "equal" |
static KnowledgeQueryPredicateOperator |
getGreater()
Returns the instance representing the String value "greater" |
static KnowledgeQueryPredicateOperator |
getGreatereq()
Returns the instance representing the String value "greatereq" |
static KnowledgeQueryPredicateOperator |
getLess()
Returns the instance representing the String value "less" |
static KnowledgeQueryPredicateOperator |
getLesseq()
Returns the instance representing the String value "lesseq" |
static KnowledgeQueryPredicateOperator |
getNoneOf()
Returns the instance representing the String value "noneOf" |
static KnowledgeQueryPredicateOperator |
getNotEqual()
Returns the instance representing the String value "notEqual" |
static KnowledgeQueryPredicateOperator |
getNovalue()
Returns the instance representing the String value "novalue" |
static KnowledgeQueryPredicateOperator |
getStarts()
Returns the instance representing the String value "starts" |
static KnowledgeQueryPredicateOperator |
getWithin()
Returns the instance representing the String value "within" |
java.lang.String |
toString()
Returns the String value represented by this instance |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public KnowledgeQueryPredicateOperator(java.lang.String pTag, java.lang.Object pValue)
public KnowledgeQueryPredicateOperator()
Method Detail |
---|
public static KnowledgeQueryPredicateOperator getAnyOf()
Returns the instance representing the String value "anyOf"
public static KnowledgeQueryPredicateOperator getAllOf()
Returns the instance representing the String value "allOf"
public static KnowledgeQueryPredicateOperator getNoneOf()
Returns the instance representing the String value "noneOf"
public static KnowledgeQueryPredicateOperator getEqual()
Returns the instance representing the String value "equal"
public static KnowledgeQueryPredicateOperator getNotEqual()
Returns the instance representing the String value "notEqual"
public static KnowledgeQueryPredicateOperator getLess()
Returns the instance representing the String value "less"
public static KnowledgeQueryPredicateOperator getLesseq()
Returns the instance representing the String value "lesseq"
public static KnowledgeQueryPredicateOperator getGreater()
Returns the instance representing the String value "greater"
public static KnowledgeQueryPredicateOperator getGreatereq()
Returns the instance representing the String value "greatereq"
public static KnowledgeQueryPredicateOperator getStarts()
Returns the instance representing the String value "starts"
public static KnowledgeQueryPredicateOperator getEnds()
Returns the instance representing the String value "ends"
public static KnowledgeQueryPredicateOperator getContains()
Returns the instance representing the String value "contains"
public static KnowledgeQueryPredicateOperator getDoesNotContain()
Returns the instance representing the String value "doesNotContain"
public static KnowledgeQueryPredicateOperator getDoesNotStartWith()
Returns the instance representing the String value "doesNotStartWith"
public static KnowledgeQueryPredicateOperator getDoesNotEndWith()
Returns the instance representing the String value "doesNotEndWith"
public static KnowledgeQueryPredicateOperator getBetween()
Returns the instance representing the String value "between"
public static KnowledgeQueryPredicateOperator getWithin()
Returns the instance representing the String value "within"
public static KnowledgeQueryPredicateOperator getNovalue()
Returns the instance representing the String value "novalue"
public java.lang.String toString()
Returns the String value represented by this instance
toString
in class java.lang.Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |