Package org.ini4j
Interface Profile.Section
-
- All Superinterfaces:
CommentedMap<java.lang.String,java.lang.String>
,java.util.Map<java.lang.String,java.lang.String>
,MultiMap<java.lang.String,java.lang.String>
,OptionMap
- All Known Subinterfaces:
Registry.Key
- Enclosing interface:
- Profile
public static interface Profile.Section extends OptionMap
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Profile.Section
addChild(java.lang.String key)
java.lang.String[]
childrenNames()
Profile.Section
getChild(java.lang.String key)
java.lang.String
getName()
Profile.Section
getParent()
java.lang.String
getSimpleName()
Profile.Section
lookup(java.lang.String... path)
void
removeChild(java.lang.String 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
-
-
-
-
Method Detail
-
getChild
Profile.Section getChild(java.lang.String key)
-
getName
java.lang.String getName()
-
getParent
Profile.Section getParent()
-
getSimpleName
java.lang.String getSimpleName()
-
addChild
Profile.Section addChild(java.lang.String key)
-
childrenNames
java.lang.String[] childrenNames()
-
lookup
Profile.Section lookup(java.lang.String... path)
-
removeChild
void removeChild(java.lang.String key)
-
-