Class TagValuesStore
- java.lang.Object
-
- org.nuiton.eugene.models.tagvalue.TagValuesStore
-
public class TagValuesStore extends Object
A tag value store with low level access.Created on 14/05/2021.
- Since:
- 3.0-alpha-39
- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Constructor Summary
Constructors Constructor Description TagValuesStore()
-
Method Summary
-
-
-
Method Detail
-
getClassifierTagValueKey
public static String getClassifierTagValueKey(String classifierName, String name)
-
getAttributeTagValueKey
public static String getAttributeTagValueKey(String classifierName, String attributeName, String name)
-
getAttributeTagValue
public String getAttributeTagValue(String classifierName, String attributeName, String name)
-
setClassifierTagValue
public void setClassifierTagValue(String classifierName, String name, String value)
-
setAttributeTagValue
public void setAttributeTagValue(String classifierName, String attributeName, String name, String value)
-
removeAttributeTagValue
public void removeAttributeTagValue(String classifierName, String attributeName, String name)
-
hasAttributeTagValue
public boolean hasAttributeTagValue(String classifierName, String attributeName, String name)
-
getAttributeTagValues
public Map<String,String> getAttributeTagValues(String classifierName, String attributeName)
-
getStore
public Properties getStore()
-
-