Returns whether this set contains the given name, with a given case-sensitivity.
(String name, boolean caseSensitive)
| 80 | /** Returns whether this set contains the given name, with a given |
| 81 | * case-sensitivity. */ |
| 82 | public boolean contains(String name, boolean caseSensitive) { |
| 83 | return names.containsKey(name, caseSensitive); |
| 84 | } |
| 85 | |
| 86 | /** Returns the contents as an iterable. */ |
| 87 | public Iterable<String> iterable() { |