Lines Matching defs:keywords
46 private final Map<String, String> keywords;
56 keywords = Collections.singletonMap(key, value);
59 UnicodeLocaleExtension(SortedSet<String> attributes, SortedMap<String, String> keywords) {
66 if (keywords != null) {
67 this.keywords = keywords;
69 this.keywords = Collections.emptyMap();
72 if (!this.attributes.isEmpty() || !this.keywords.isEmpty()) {
77 for (Entry<String, String> keyword : this.keywords.entrySet()) {
98 if (keywords == Collections.EMPTY_MAP) {
101 return Collections.unmodifiableSet(keywords.keySet());
105 return keywords.get(unicodeLocaleKey);