Package org.ini4j
Interface Registry.Key
-
- All Superinterfaces:
CommentedMap<String,String>
,Map<String,String>
,MultiMap<String,String>
,OptionMap
,Profile.Section
- Enclosing interface:
- Registry
public static interface Registry.Key extends Profile.Section
-
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Registry.Key
addChild(String key)
Registry.Key
getChild(String key)
Registry.Key
getParent()
Registry.Type
getType(Object key)
Registry.Type
getType(Object key, Registry.Type defaulType)
Registry.Key
lookup(String... path)
Registry.Type
putType(String key, Registry.Type type)
Registry.Type
removeType(Object key)
-
Methods inherited from interface org.ini4j.CommentedMap
getComment, putComment, removeComment
-
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
Methods inherited from interface org.ini4j.MultiMap
add, add, get, getAll, length, put, putAll, remove
-
Methods inherited from interface org.ini4j.OptionMap
add, add, as, as, fetch, fetch, fetch, fetch, fetch, fetch, fetchAll, from, from, get, get, get, get, getAll, put, put, putAll, to, to
-
Methods inherited from interface org.ini4j.Profile.Section
childrenNames, getName, getSimpleName, removeChild
-
-
-
-
Field Detail
-
DEFAULT_NAME
static final String DEFAULT_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getChild
Registry.Key getChild(String key)
- Specified by:
getChild
in interfaceProfile.Section
-
getParent
Registry.Key getParent()
- Specified by:
getParent
in interfaceProfile.Section
-
getType
Registry.Type getType(Object key)
-
getType
Registry.Type getType(Object key, Registry.Type defaulType)
-
addChild
Registry.Key addChild(String key)
- Specified by:
addChild
in interfaceProfile.Section
-
lookup
Registry.Key lookup(String... path)
- Specified by:
lookup
in interfaceProfile.Section
-
putType
Registry.Type putType(String key, Registry.Type type)
-
removeType
Registry.Type removeType(Object key)
-
-