This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Attributes { | |
private final Map<String, Set<String>> attributes; | |
public Attributes() { | |
this.attributes = new HashMap<>(); | |
} | |
public boolean attributeExists(String attributeName) { | |
return attributes.containsKey(attributeName); | |
} | |
public Set<String> values(String attributeName) { | |
return attributes.get(attributeName); | |
} | |
public String getSingleValue(String attributeName) { | |
return values(attributeName).iterator().next(); | |
} | |
public Attributes addAttribute(String attributeName, Collection<String> values) { | |
this.attributes.put(attributeName, new HashSet<>(values)); | |
return this; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment