Package net.sourceforge.plantuml.preproc
Class ConfigurationStore<K>
- java.lang.Object
-
- net.sourceforge.plantuml.preproc.ConfigurationStore<K>
-
public class ConfigurationStore<K> extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description ConfigurationStore()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <K> ConfigurationStore<K>
createEmpty()
void
define(K key, java.lang.String value)
java.lang.String
getValue(K key)
boolean
isDefine(K key)
boolean
isTrue(K key)
void
undefine(K key)
-
-
-
Method Detail
-
createEmpty
public static <K> ConfigurationStore<K> createEmpty()
-
define
public void define(K key, java.lang.String value)
-
isDefine
public boolean isDefine(K key)
-
isTrue
public boolean isTrue(K key)
-
undefine
public void undefine(K key)
-
getValue
public java.lang.String getValue(K key)
-
-