Searched refs:BS (Results 1 – 1 of 1) sorted by relevance
72 static class BS implements Comparable<BS> { class in ConcurrentHashMapTest74 BS(String value) { this.value = value; } in BS() method in ConcurrentHashMapTest.BS75 public int compareTo(BS other) { in compareTo()79 return (x instanceof BS) && value.equals(((BS)x).value); in equals()145 BS bs = new BS(String.valueOf(i)); in testGenericComparable()147 LexicographicList<BS> bss = new LexicographicList<BS>(bs); in testGenericComparable()