if (i % 6 == 0) {
sixes.add(new Integer(i));
}
}
truePred = new Predicate() {
public boolean evaluate(Object x) {
return true;
}
};
falsePred = new Predicate() {
public boolean evaluate(Object x) {
return true;
}
};
evenPred = new Predicate() {
public boolean evaluate(Object x) {
return (((Integer) x).intValue() % 2 == 0);
}
};
oddPred = new Predicate() {
public boolean evaluate(Object x) {
return (((Integer) x).intValue() % 2 == 1);
}
};
threePred = new Predicate() {
public boolean evaluate(Object x) {
return (((Integer) x).intValue() % 3 == 0);
}
};
fourPred = new Predicate() {
public boolean evaluate(Object x) {
return (((Integer) x).intValue() % 4 == 0);
}
};