Searched refs:setWithCaseInsensitive (Results 1 – 1 of 1) sorted by relevance
2612 Set<String> setWithCaseInsensitive = new TreeSet<String>(caseInsensitive); in testJavaSemantics() local2613 setWithCaseInsensitive.addAll(Arrays.asList(new String[] { "a", "b", "c" })); in testJavaSemantics()2616 System.out.println("S1 equals S2?\t" + setWithCaseInsensitive.equals(plainSet)); in testJavaSemantics()2617 System.out.println("S2 equals S1?\t" + plainSet.equals(setWithCaseInsensitive)); in testJavaSemantics()2618 setWithCaseInsensitive.removeAll(plainSet); in testJavaSemantics()2619 System.out.println("S1 removeAll S2 is empty?\t" + setWithCaseInsensitive.isEmpty()); in testJavaSemantics()