Package org.ini4j
Interface Profile.Section
-
- All Superinterfaces:
CommentedMap<String,String>
,Map<String,String>
,MultiMap<String,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(String key)
String[]
childrenNames()
Profile.Section
getChild(String key)
String
getName()
Profile.Section
getParent()
String
getSimpleName()
Profile.Section
lookup(String... path)
void
removeChild(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(String key)
-
getName
String getName()
-
getParent
Profile.Section getParent()
-
getSimpleName
String getSimpleName()
-
addChild
Profile.Section addChild(String key)
-
childrenNames
String[] childrenNames()
-
lookup
Profile.Section lookup(String... path)
-
removeChild
void removeChild(String key)
-
-