コード例 #1
0
ファイル: Collections.java プロジェクト: rags147/ha-jdbc
    @Override
    public SortedSet<E> subSet(E fromElement, E toElement) {
      Comparator<E> comparator = naturalComparator();

      return ((comparator.compare(this.element, toElement) < 0)
              && (comparator.compare(this.element, fromElement) >= 0))
          ? this
          : Collections.<E>emptySortedSet();
    }
コード例 #2
0
ファイル: Collections.java プロジェクト: rags147/ha-jdbc
 @Override
 public SortedSet<E> tailSet(E fromElement) {
   return (naturalComparator().compare(this.element, fromElement) >= 0)
       ? this
       : Collections.<E>emptySortedSet();
 }
コード例 #3
0
ファイル: Collections.java プロジェクト: rags147/ha-jdbc
 @Override
 public SortedSet<E> headSet(E toElement) {
   return (naturalComparator().compare(this.element, toElement) < 0)
       ? this
       : Collections.<E>emptySortedSet();
 }
コード例 #4
0
ファイル: CollectionsTest.java プロジェクト: halset/ha-jdbc
 @Test
 public void emptySortedSet() {
   this.verify(Collections.<Integer>emptySortedSet(), new TreeSet<Integer>(), 0, 1);
 }