Skip to content

Instantly share code, notes, and snippets.

@wendal
Created September 3, 2012 12:37
Show Gist options
  • Save wendal/3609055 to your computer and use it in GitHub Desktop.
Save wendal/3609055 to your computer and use it in GitHub Desktop.
@Test
public void test_cnd_in() {
List<String> list = new ArrayList<String>();
list.add("ab,c");
list.add("game:Announcement:read,update:*");
Cnd cnd = Cnd.where("abc", "in", list).and("zz", "in", new String[]{"asfdsdf,fasdfasdf,asf", "XXXX"});
System.out.println(cnd);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment