Package com.ibm.cics.model
Interface IFilterVisitor
-
public interface IFilterVisitor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidand()<T> voideq(ICICSAttribute<T> attribute, T value)<T> voidge(ICICSAttribute<T> attribute, T value)<T> voidgt(ICICSAttribute<T> attribute, T value)<T> voidis(ICICSAttribute<T> attribute, T value)<T> voidle(ICICSAttribute<T> attribute, T value)<T> voidlt(ICICSAttribute<T> attribute, T value)<T> voidne(ICICSAttribute<T> attribute, T value)voidnot()voidor()
-
-
-
Method Detail
-
or
void or()
-
and
void and()
-
not
void not()
-
eq
<T> void eq(ICICSAttribute<T> attribute, T value)
-
is
<T> void is(ICICSAttribute<T> attribute, T value)
-
le
<T> void le(ICICSAttribute<T> attribute, T value)
-
lt
<T> void lt(ICICSAttribute<T> attribute, T value)
-
ge
<T> void ge(ICICSAttribute<T> attribute, T value)
-
gt
<T> void gt(ICICSAttribute<T> attribute, T value)
-
ne
<T> void ne(ICICSAttribute<T> attribute, T value)
-
-