Class LookupQueryCondition
- java.lang.Object
-
- com.saperion.ngc.iform.field.lookup.popup.LookupQueryCondition
-
public class LookupQueryCondition extends java.lang.Object
Represents a condition on a column of a lookup field.
-
-
Constructor Summary
Constructors Constructor Description LookupQueryCondition(com.saperion.intf.SaPropertyValue value, boolean found)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LookupQueryCondition
empty()
com.saperion.intf.SaPropertyValue
getValue()
boolean
isEmpty()
boolean
isFound()
static LookupQueryCondition
notFound()
-
-
-
Method Detail
-
notFound
public static LookupQueryCondition notFound()
- Returns:
- a condition signalizing that no condition was found
-
empty
public static LookupQueryCondition empty()
- Returns:
- a condition signalizing that a condition with an empty value was found
-
getValue
public com.saperion.intf.SaPropertyValue getValue()
- Returns:
- typed value of the condition
-
isFound
public boolean isFound()
- Returns:
- true if a condition was found
-
isEmpty
public boolean isEmpty()
- Returns:
- true if the condition contains an empty value
-
-