Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1ccee9809098f2e6c8228cef485bb37b46b9eda6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
 * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.net4j.util.collection;

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.Iterator;

/**
 * @author Eike Stepper
 * @since 3.2
 */
public class CaseInsensitiveStringSet extends HashSet<String>
{
  private static final long serialVersionUID = 1L;

  public CaseInsensitiveStringSet()
  {
  }

  public CaseInsensitiveStringSet(Collection<? extends String> c)
  {
    super(c);
  }

  public CaseInsensitiveStringSet(int initialCapacity, float loadFactor)
  {
    super(initialCapacity, loadFactor);
  }

  public CaseInsensitiveStringSet(int initialCapacity)
  {
    super(initialCapacity);
  }

  public boolean isLowerCase()
  {
    return true;
  }

  @Override
  public boolean contains(Object o)
  {
    return super.contains(convert(o));
  }

  @Override
  public boolean add(String e)
  {
    return super.add(convert(e));
  }

  @Override
  public boolean remove(Object o)
  {
    return super.remove(convert(o));
  }

  @Override
  public boolean removeAll(Collection<?> c)
  {
    return super.removeAll(convert(c));
  }

  @Override
  public boolean containsAll(Collection<?> c)
  {
    return super.containsAll(convert(c));
  }

  @Override
  public boolean addAll(Collection<? extends String> c)
  {
    boolean modified = false;
    Iterator<? extends String> e = c.iterator();
    while (e.hasNext())
    {
      if (add(convert(e.next())))
      {
        modified = true;
      }
    }

    return modified;
  }

  @Override
  public boolean retainAll(Collection<?> c)
  {
    return super.retainAll(convert(c));
  }

  protected String convert(Object o)
  {
    if (o instanceof String)
    {
      if (isLowerCase())
      {
        return ((String)o).toLowerCase();
      }

      return ((String)o).toUpperCase();
    }

    return null;
  }

  protected Collection<?> convert(Collection<?> c)
  {
    Collection<Object> list = new ArrayList<Object>();
    for (Iterator<?> it = c.iterator(); it.hasNext();)
    {
      Object o = it.next();
      list.add(convert(o));
    }

    return list;
  }
}

Back to the top