Package com.ibm.cics.model
Interface IFilterVisitor
-
public interface IFilterVisitor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
and()
<T> void
eq(ICICSAttribute<T> attribute, T value)
<T> void
ge(ICICSAttribute<T> attribute, T value)
<T> void
gt(ICICSAttribute<T> attribute, T value)
<T> void
is(ICICSAttribute<T> attribute, T value)
<T> void
le(ICICSAttribute<T> attribute, T value)
<T> void
lt(ICICSAttribute<T> attribute, T value)
<T> void
ne(ICICSAttribute<T> attribute, T value)
void
not()
void
or()
-
-
-
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)
-
-