DBObject idMatch = new BasicDBObject("user_id","bc");
DBObject usernameMatch = new BasicDBObject("user_name",bc);
DBObject ageMatch = new BasicDBObject("age",2);
DBObject andAll = new BasicDBObject("$and", Arrays.asList(existence, firstNotMatch, secondNotMatch));
//calling table.find will get you what you wanted.
table.find(andAll);
Jeśli chcesz 'LUB' warunki, po prostu zastąp $i $or.zauważ, że powyższy kod nie jest poprawnie testowany i być może trzeba go nieco zmodyfikować, aby działał.
Twoje pytanie nie jest jasne, ale mam nadzieję, że pomogłem.