Package io.github.isotes.vs.utils
Class PropertyGroupWrapper
- java.lang.Object
-
- java.util.AbstractMap<String,String>
-
- io.github.isotes.vs.utils.PropertyGroupWrapper
-
public class PropertyGroupWrapper extends AbstractMap<String,String>
Wrapper to accessPropertyGroupType
as a key/valueMap
<String, String>This class uses the
PropertyGroupType.getPropertyList()
accessor and, therefore, only contains properties that are known to the schema. For property groups with arbitrary elements, e.g., 'UserMacros', use theGenericPropertyGroup
class which operates on directly on the underlying XML.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
-
-
Field Summary
Fields Modifier and Type Field Description PropertyGroupType
propertyGroup
-
Constructor Summary
Constructors Constructor Description PropertyGroupWrapper(PropertyGroupType propertyGroup)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<Map.Entry<String,String>>
entrySet()
String
put(String key, String value)
-
Methods inherited from class java.util.AbstractMap
clear, clone, containsKey, containsValue, equals, get, hashCode, isEmpty, keySet, putAll, remove, size, toString, values
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Field Detail
-
propertyGroup
public final PropertyGroupType propertyGroup
-
-
Constructor Detail
-
PropertyGroupWrapper
public PropertyGroupWrapper(PropertyGroupType propertyGroup)
-
-