如果我有以下内容:
public enum Attribute {
ONE, TWO, THREE
}
private Map<String, Integer> mAttributesMap = new HashMap<>();
mAttributesMap.put(Attribute.ONE.name(), 5);
mAttributesMap.put(Attribute.TWO.name(), 5);
Run Code Online (Sandbox Code Playgroud)
那么我怎样才能得到钥匙mAttibutesMap?以及如何增加它?