![]() |
Bukkit
1.4.7-R1.0
|
A type of ConfigurationSection that is stored in memory. More...
Inheritance diagram for org.bukkit.configuration.MemorySection:
Collaboration diagram for org.bukkit.configuration.MemorySection:Public Member Functions | |
| Set< String > | getKeys (boolean deep) |
| Map< String, Object > | getValues (boolean deep) |
| boolean | contains (String path) |
| boolean | isSet (String path) |
| String | getCurrentPath () |
| String | getName () |
| Configuration | getRoot () |
| ConfigurationSection | getParent () |
| void | addDefault (String path, Object value) |
| ConfigurationSection | getDefaultSection () |
| void | set (String path, Object value) |
| Object | get (String path) |
| Object | get (String path, Object def) |
| ConfigurationSection | createSection (String path) |
| ConfigurationSection | createSection (String path, Map<?,?> map) |
| String | getString (String path) |
| String | getString (String path, String def) |
| boolean | isString (String path) |
| int | getInt (String path) |
| int | getInt (String path, int def) |
| boolean | isInt (String path) |
| boolean | getBoolean (String path) |
| boolean | getBoolean (String path, boolean def) |
| boolean | isBoolean (String path) |
| double | getDouble (String path) |
| double | getDouble (String path, double def) |
| boolean | isDouble (String path) |
| long | getLong (String path) |
| long | getLong (String path, long def) |
| boolean | isLong (String path) |
| List<?> | getList (String path) |
| List<?> | getList (String path, List<?> def) |
| boolean | isList (String path) |
| List< String > | getStringList (String path) |
| List< Integer > | getIntegerList (String path) |
| List< Boolean > | getBooleanList (String path) |
| List< Double > | getDoubleList (String path) |
| List< Float > | getFloatList (String path) |
| List< Long > | getLongList (String path) |
| List< Byte > | getByteList (String path) |
| List< Character > | getCharacterList (String path) |
| List< Short > | getShortList (String path) |
| List< Map<?,?> > | getMapList (String path) |
| Vector | getVector (String path) |
| Vector | getVector (String path, Vector def) |
| boolean | isVector (String path) |
| OfflinePlayer | getOfflinePlayer (String path) |
| OfflinePlayer | getOfflinePlayer (String path, OfflinePlayer def) |
| boolean | isOfflinePlayer (String path) |
| ItemStack | getItemStack (String path) |
| ItemStack | getItemStack (String path, ItemStack def) |
| boolean | isItemStack (String path) |
| Color | getColor (String path) |
| Color | getColor (String path, Color def) |
| boolean | isColor (String path) |
| ConfigurationSection | getConfigurationSection (String path) |
| boolean | isConfigurationSection (String path) |
| String | toString () |
Public Member Functions inherited from org.bukkit.configuration.ConfigurationSection | |
| Set< String > | getKeys (boolean deep) |
| Gets a set containing all keys in this section. | |
| Map< String, Object > | getValues (boolean deep) |
| Gets a Map containing all keys and their values for this section. | |
| boolean | contains (String path) |
| Checks if this ConfigurationSection contains the given path. | |
| boolean | isSet (String path) |
| Checks if this ConfigurationSection has a value set for the given path. | |
| String | getCurrentPath () |
| Gets the path of this ConfigurationSection from its root Configuration. | |
| String | getName () |
| Gets the name of this individual ConfigurationSection, in the path. | |
| Configuration | getRoot () |
| Gets the root Configuration that contains this ConfigurationSection. | |
| ConfigurationSection | getParent () |
| Gets the parent ConfigurationSection that directly contains this ConfigurationSection. | |
| Object | get (String path) |
| Gets the requested Object by path. | |
| Object | get (String path, Object def) |
| Gets the requested Object by path, returning a default value if not found. | |
| void | set (String path, Object value) |
| Sets the specified path to the given value. | |
| ConfigurationSection | createSection (String path) |
| Creates an empty ConfigurationSection at the specified path. | |
| ConfigurationSection | createSection (String path, Map<?,?> map) |
| Creates a ConfigurationSection at the specified path, with specified values. | |
| String | getString (String path) |
| Gets the requested String by path. | |
| String | getString (String path, String def) |
| Gets the requested String by path, returning a default value if not found. | |
| boolean | isString (String path) |
| Checks if the specified path is a String. | |
| int | getInt (String path) |
| Gets the requested int by path. | |
| int | getInt (String path, int def) |
| Gets the requested int by path, returning a default value if not found. | |
| boolean | isInt (String path) |
| Checks if the specified path is an int. | |
| boolean | getBoolean (String path) |
| Gets the requested boolean by path. | |
| boolean | getBoolean (String path, boolean def) |
| Gets the requested boolean by path, returning a default value if not found. | |
| boolean | isBoolean (String path) |
| Checks if the specified path is a boolean. | |
| double | getDouble (String path) |
| Gets the requested double by path. | |
| double | getDouble (String path, double def) |
| Gets the requested double by path, returning a default value if not found. | |
| boolean | isDouble (String path) |
| Checks if the specified path is a double. | |
| long | getLong (String path) |
| Gets the requested long by path. | |
| long | getLong (String path, long def) |
| Gets the requested long by path, returning a default value if not found. | |
| boolean | isLong (String path) |
| Checks if the specified path is a long. | |
| List<?> | getList (String path) |
| Gets the requested List by path. | |
| List<?> | getList (String path, List<?> def) |
| Gets the requested List by path, returning a default value if not found. | |
| boolean | isList (String path) |
| Checks if the specified path is a List. | |
| List< String > | getStringList (String path) |
| Gets the requested List of String by path. | |
| List< Integer > | getIntegerList (String path) |
| Gets the requested List of Integer by path. | |
| List< Boolean > | getBooleanList (String path) |
| Gets the requested List of Boolean by path. | |
| List< Double > | getDoubleList (String path) |
| Gets the requested List of Double by path. | |
| List< Float > | getFloatList (String path) |
| Gets the requested List of Float by path. | |
| List< Long > | getLongList (String path) |
| Gets the requested List of Long by path. | |
| List< Byte > | getByteList (String path) |
| Gets the requested List of Byte by path. | |
| List< Character > | getCharacterList (String path) |
| Gets the requested List of Character by path. | |
| List< Short > | getShortList (String path) |
| Gets the requested List of Short by path. | |
| List< Map<?,?> > | getMapList (String path) |
| Gets the requested List of Maps by path. | |
| Vector | getVector (String path) |
| Gets the requested Vector by path. | |
| Vector | getVector (String path, Vector def) |
| Gets the requested Vector by path, returning a default value if not found. | |
| boolean | isVector (String path) |
| Checks if the specified path is a Vector. | |
| OfflinePlayer | getOfflinePlayer (String path) |
| Gets the requested OfflinePlayer by path. | |
| OfflinePlayer | getOfflinePlayer (String path, OfflinePlayer def) |
| Gets the requested OfflinePlayer by path, returning a default value if not found. | |
| boolean | isOfflinePlayer (String path) |
| Checks if the specified path is an OfflinePlayer. | |
| ItemStack | getItemStack (String path) |
| Gets the requested ItemStack by path. | |
| ItemStack | getItemStack (String path, ItemStack def) |
| Gets the requested ItemStack by path, returning a default value if not found. | |
| boolean | isItemStack (String path) |
| Checks if the specified path is an ItemStack. | |
| Color | getColor (String path) |
| Gets the requested Color by path. | |
| Color | getColor (String path, Color def) |
| Gets the requested Color by path, returning a default value if not found. | |
| boolean | isColor (String path) |
| Checks if the specified path is a Color. | |
| ConfigurationSection | getConfigurationSection (String path) |
| Gets the requested ConfigurationSection by path. | |
| boolean | isConfigurationSection (String path) |
| Checks if the specified path is a ConfigurationSection. | |
| ConfigurationSection | getDefaultSection () |
| Gets the equivalent ConfigurationSection from the default Configuration defined in getRoot(). | |
| void | addDefault (String path, Object value) |
| Sets the default value in the root at the given path as provided. | |
Static Public Member Functions | |
| static String | createPath (ConfigurationSection section, String key) |
| Creates a full path to the given ConfigurationSection from its root Configuration. | |
| static String | createPath (ConfigurationSection section, String key, ConfigurationSection relativeTo) |
| Creates a relative path to the given ConfigurationSection from the given relative section. | |
Protected Member Functions | |
| MemorySection () | |
| Creates an empty MemorySection for use as a root Configuration section. | |
| MemorySection (ConfigurationSection parent, String path) | |
| Creates an empty MemorySection with the specified parent and path. | |
| boolean | isPrimitiveWrapper (Object input) |
| Object | getDefault (String path) |
| void | mapChildrenKeys (Set< String > output, ConfigurationSection section, boolean deep) |
| void | mapChildrenValues (Map< String, Object > output, ConfigurationSection section, boolean deep) |
Protected Attributes | |
| final Map< String, Object > | map = new LinkedHashMap<String, Object>() |
A type of ConfigurationSection that is stored in memory.
Definition at line 21 of file MemorySection.java.
|
protected |
Creates an empty MemorySection for use as a root Configuration section.
Note that calling this without being yourself a Configuration will throw an exception!
| IllegalStateException | Thrown if this is not a Configuration root. |
Definition at line 36 of file MemorySection.java.
Referenced by org.bukkit.configuration.MemorySection.createSection(), org.bukkit.configuration.MemorySection.mapChildrenKeys(), and org.bukkit.configuration.MemorySection.mapChildrenValues().
|
protected |
Creates an empty MemorySection with the specified parent and path.
| parent | Parent section that contains this own section. |
| path | Path that you may access this section from via the root Configuration. |
| IllegalArgumentException | Thrown is parent or path is null, or if parent contains no root Configuration. |
Definition at line 54 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.createPath(), and org.bukkit.configuration.ConfigurationSection.getRoot().
| void org.bukkit.configuration.MemorySection.addDefault | ( | String | path, |
| Object | value | ||
| ) |
Definition at line 132 of file MemorySection.java.
References org.bukkit.configuration.Configuration.addDefault(), org.bukkit.configuration.MemorySection.createPath(), and org.bukkit.configuration.MemorySection.getRoot().
| boolean org.bukkit.configuration.MemorySection.contains | ( | String | path | ) |
Definition at line 101 of file MemorySection.java.
Referenced by org.bukkit.configuration.MemorySection.isSet().
|
static |
Creates a full path to the given ConfigurationSection from its root Configuration.
You may use this method for any given ConfigurationSection, not only MemorySection.
| section | Section to create a path for. |
| key | Name of the specified section. |
Definition at line 756 of file MemorySection.java.
References org.bukkit.configuration.ConfigurationSection.getRoot().
Referenced by org.bukkit.configuration.MemorySection.addDefault(), org.bukkit.configuration.MemorySection.getDefault(), org.bukkit.configuration.MemorySection.mapChildrenKeys(), org.bukkit.configuration.MemorySection.mapChildrenValues(), and org.bukkit.configuration.MemorySection.MemorySection().
|
static |
Creates a relative path to the given ConfigurationSection from the given relative section.
You may use this method for any given ConfigurationSection, not only MemorySection.
| section | Section to create a path for. |
| key | Name of the specified section. |
| relativeTo | Section to create the path relative to. |
Definition at line 770 of file MemorySection.java.
References org.bukkit.configuration.ConfigurationSection.getName(), org.bukkit.configuration.ConfigurationSection.getParent(), org.bukkit.configuration.ConfigurationSection.getRoot(), and org.bukkit.configuration.Configuration.options().
| ConfigurationSection org.bukkit.configuration.MemorySection.createSection | ( | String | path | ) |
Definition at line 229 of file MemorySection.java.
References org.bukkit.configuration.ConfigurationSection.createSection(), org.bukkit.configuration.ConfigurationSection.getConfigurationSection(), org.bukkit.configuration.MemorySection.getRoot(), org.bukkit.configuration.MemorySection.map, org.bukkit.configuration.MemorySection.MemorySection(), and org.bukkit.configuration.Configuration.options().
Referenced by org.bukkit.configuration.MemorySection.createSection(), and org.bukkit.configuration.MemorySection.getConfigurationSection().
| ConfigurationSection org.bukkit.configuration.MemorySection.createSection | ( | String | path, |
| Map<?,?> | map | ||
| ) |
Definition at line 260 of file MemorySection.java.
References org.bukkit.configuration.ConfigurationSection.createSection(), org.bukkit.configuration.MemorySection.createSection(), and org.bukkit.configuration.ConfigurationSection.set().
| Object org.bukkit.configuration.MemorySection.get | ( | String | path | ) |
Definition at line 193 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getDefault().
| Object org.bukkit.configuration.MemorySection.get | ( | String | path, |
| Object | def | ||
| ) |
Definition at line 197 of file MemorySection.java.
References org.bukkit.configuration.ConfigurationSection.get(), org.bukkit.configuration.ConfigurationSection.getConfigurationSection(), org.bukkit.configuration.MemorySection.getRoot(), org.bukkit.configuration.MemorySection.map, and org.bukkit.configuration.Configuration.options().
| boolean org.bukkit.configuration.MemorySection.getBoolean | ( | String | path | ) |
Definition at line 305 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getDefault().
| boolean org.bukkit.configuration.MemorySection.getBoolean | ( | String | path, |
| boolean | def | ||
| ) |
Definition at line 310 of file MemorySection.java.
| List<Boolean> org.bukkit.configuration.MemorySection.getBooleanList | ( | String | path | ) |
Definition at line 411 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getList().
| List<Byte> org.bukkit.configuration.MemorySection.getByteList | ( | String | path | ) |
Definition at line 516 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getList().
| List<Character> org.bukkit.configuration.MemorySection.getCharacterList | ( | String | path | ) |
Definition at line 543 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getList().
| Color org.bukkit.configuration.MemorySection.getColor | ( | String | path | ) |
Definition at line 659 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getDefault().
Definition at line 664 of file MemorySection.java.
| ConfigurationSection org.bukkit.configuration.MemorySection.getConfigurationSection | ( | String | path | ) |
Definition at line 674 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.createSection(), and org.bukkit.configuration.MemorySection.getDefault().
| String org.bukkit.configuration.MemorySection.getCurrentPath | ( | ) |
Definition at line 116 of file MemorySection.java.
Referenced by org.bukkit.configuration.MemorySection.getDefaultSection(), and org.bukkit.configuration.MemorySection.toString().
|
protected |
Definition at line 696 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.createPath(), org.bukkit.configuration.ConfigurationSection.get(), org.bukkit.configuration.Configuration.getDefaults(), and org.bukkit.configuration.MemorySection.getRoot().
Referenced by org.bukkit.configuration.MemorySection.get(), org.bukkit.configuration.MemorySection.getBoolean(), org.bukkit.configuration.MemorySection.getColor(), org.bukkit.configuration.MemorySection.getConfigurationSection(), org.bukkit.configuration.MemorySection.getDouble(), org.bukkit.configuration.MemorySection.getInt(), org.bukkit.configuration.MemorySection.getItemStack(), org.bukkit.configuration.MemorySection.getList(), org.bukkit.configuration.MemorySection.getLong(), org.bukkit.configuration.MemorySection.getOfflinePlayer(), org.bukkit.configuration.MemorySection.getString(), and org.bukkit.configuration.MemorySection.getVector().
| ConfigurationSection org.bukkit.configuration.MemorySection.getDefaultSection | ( | ) |
Definition at line 145 of file MemorySection.java.
References org.bukkit.configuration.ConfigurationSection.getConfigurationSection(), org.bukkit.configuration.MemorySection.getCurrentPath(), org.bukkit.configuration.Configuration.getDefaults(), org.bukkit.configuration.MemorySection.getRoot(), and org.bukkit.configuration.ConfigurationSection.isConfigurationSection().
Referenced by org.bukkit.configuration.MemorySection.getKeys(), and org.bukkit.configuration.MemorySection.getValues().
| double org.bukkit.configuration.MemorySection.getDouble | ( | String | path | ) |
Definition at line 320 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getDefault().
| double org.bukkit.configuration.MemorySection.getDouble | ( | String | path, |
| double | def | ||
| ) |
Definition at line 325 of file MemorySection.java.
| List<Double> org.bukkit.configuration.MemorySection.getDoubleList | ( | String | path | ) |
Definition at line 435 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getList().
| List<Float> org.bukkit.configuration.MemorySection.getFloatList | ( | String | path | ) |
Definition at line 462 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getList().
| int org.bukkit.configuration.MemorySection.getInt | ( | String | path | ) |
Definition at line 290 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getDefault().
| int org.bukkit.configuration.MemorySection.getInt | ( | String | path, |
| int | def | ||
| ) |
Definition at line 295 of file MemorySection.java.
| List<Integer> org.bukkit.configuration.MemorySection.getIntegerList | ( | String | path | ) |
Definition at line 384 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getList().
| ItemStack org.bukkit.configuration.MemorySection.getItemStack | ( | String | path | ) |
Definition at line 644 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getDefault().
Definition at line 649 of file MemorySection.java.
| Set<String> org.bukkit.configuration.MemorySection.getKeys | ( | boolean | deep | ) |
| List<?> org.bukkit.configuration.MemorySection.getList | ( | String | path | ) |
Definition at line 351 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getDefault().
Referenced by org.bukkit.configuration.MemorySection.getBooleanList(), org.bukkit.configuration.MemorySection.getByteList(), org.bukkit.configuration.MemorySection.getCharacterList(), org.bukkit.configuration.MemorySection.getDoubleList(), org.bukkit.configuration.MemorySection.getFloatList(), org.bukkit.configuration.MemorySection.getIntegerList(), org.bukkit.configuration.MemorySection.getLongList(), org.bukkit.configuration.MemorySection.getMapList(), org.bukkit.configuration.MemorySection.getShortList(), and org.bukkit.configuration.MemorySection.getStringList().
| List<?> org.bukkit.configuration.MemorySection.getList | ( | String | path, |
| List<?> | def | ||
| ) |
Definition at line 356 of file MemorySection.java.
| long org.bukkit.configuration.MemorySection.getLong | ( | String | path | ) |
Definition at line 335 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getDefault().
| long org.bukkit.configuration.MemorySection.getLong | ( | String | path, |
| long | def | ||
| ) |
Definition at line 340 of file MemorySection.java.
| List<Long> org.bukkit.configuration.MemorySection.getLongList | ( | String | path | ) |
Definition at line 489 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getList().
| List<Map<?, ?> > org.bukkit.configuration.MemorySection.getMapList | ( | String | path | ) |
Definition at line 596 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getList().
| String org.bukkit.configuration.MemorySection.getName | ( | ) |
Definition at line 120 of file MemorySection.java.
| OfflinePlayer org.bukkit.configuration.MemorySection.getOfflinePlayer | ( | String | path | ) |
Definition at line 629 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getDefault().
| OfflinePlayer org.bukkit.configuration.MemorySection.getOfflinePlayer | ( | String | path, |
| OfflinePlayer | def | ||
| ) |
Definition at line 634 of file MemorySection.java.
| ConfigurationSection org.bukkit.configuration.MemorySection.getParent | ( | ) |
Definition at line 128 of file MemorySection.java.
| Configuration org.bukkit.configuration.MemorySection.getRoot | ( | ) |
Definition at line 124 of file MemorySection.java.
Referenced by org.bukkit.configuration.MemorySection.addDefault(), org.bukkit.configuration.MemorySection.createSection(), org.bukkit.configuration.MemorySection.get(), org.bukkit.configuration.MemorySection.getDefault(), org.bukkit.configuration.MemorySection.getDefaultSection(), org.bukkit.configuration.MemorySection.getKeys(), org.bukkit.configuration.MemorySection.getValues(), org.bukkit.configuration.MemorySection.isSet(), org.bukkit.configuration.MemorySection.set(), and org.bukkit.configuration.MemorySection.toString().
| List<Short> org.bukkit.configuration.MemorySection.getShortList | ( | String | path | ) |
Definition at line 569 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getList().
| String org.bukkit.configuration.MemorySection.getString | ( | String | path | ) |
Definition at line 275 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getDefault().
| String org.bukkit.configuration.MemorySection.getString | ( | String | path, |
| String | def | ||
| ) |
Definition at line 280 of file MemorySection.java.
| List<String> org.bukkit.configuration.MemorySection.getStringList | ( | String | path | ) |
Definition at line 366 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getList(), and org.bukkit.configuration.MemorySection.isPrimitiveWrapper().
| Map<String, Object> org.bukkit.configuration.MemorySection.getValues | ( | boolean | deep | ) |
Definition at line 84 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getDefaultSection(), org.bukkit.configuration.MemorySection.getRoot(), org.bukkit.configuration.ConfigurationSection.getValues(), and org.bukkit.configuration.MemorySection.mapChildrenValues().
Referenced by org.bukkit.configuration.file.YamlConfiguration.saveToString().
| Vector org.bukkit.configuration.MemorySection.getVector | ( | String | path | ) |
Definition at line 614 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getDefault().
Definition at line 619 of file MemorySection.java.
| boolean org.bukkit.configuration.MemorySection.isBoolean | ( | String | path | ) |
Definition at line 315 of file MemorySection.java.
| boolean org.bukkit.configuration.MemorySection.isColor | ( | String | path | ) |
Definition at line 669 of file MemorySection.java.
| boolean org.bukkit.configuration.MemorySection.isConfigurationSection | ( | String | path | ) |
Definition at line 684 of file MemorySection.java.
| boolean org.bukkit.configuration.MemorySection.isDouble | ( | String | path | ) |
Definition at line 330 of file MemorySection.java.
| boolean org.bukkit.configuration.MemorySection.isInt | ( | String | path | ) |
Definition at line 300 of file MemorySection.java.
| boolean org.bukkit.configuration.MemorySection.isItemStack | ( | String | path | ) |
Definition at line 654 of file MemorySection.java.
| boolean org.bukkit.configuration.MemorySection.isList | ( | String | path | ) |
Definition at line 361 of file MemorySection.java.
| boolean org.bukkit.configuration.MemorySection.isLong | ( | String | path | ) |
Definition at line 345 of file MemorySection.java.
| boolean org.bukkit.configuration.MemorySection.isOfflinePlayer | ( | String | path | ) |
Definition at line 639 of file MemorySection.java.
|
protected |
Definition at line 689 of file MemorySection.java.
Referenced by org.bukkit.configuration.MemorySection.getStringList().
| boolean org.bukkit.configuration.MemorySection.isSet | ( | String | path | ) |
Definition at line 105 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.contains(), org.bukkit.configuration.MemorySection.getRoot(), and org.bukkit.configuration.Configuration.options().
| boolean org.bukkit.configuration.MemorySection.isString | ( | String | path | ) |
Definition at line 285 of file MemorySection.java.
| boolean org.bukkit.configuration.MemorySection.isVector | ( | String | path | ) |
Definition at line 624 of file MemorySection.java.
|
protected |
Definition at line 704 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.createPath(), org.bukkit.configuration.ConfigurationSection.getKeys(), org.bukkit.configuration.MemorySection.map, and org.bukkit.configuration.MemorySection.MemorySection().
Referenced by org.bukkit.configuration.MemorySection.getKeys().
|
protected |
Definition at line 725 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.createPath(), org.bukkit.configuration.ConfigurationSection.getValues(), org.bukkit.configuration.MemorySection.map, and org.bukkit.configuration.MemorySection.MemorySection().
Referenced by org.bukkit.configuration.MemorySection.getValues().
| void org.bukkit.configuration.MemorySection.set | ( | String | path, |
| Object | value | ||
| ) |
Definition at line 158 of file MemorySection.java.
References org.bukkit.configuration.ConfigurationSection.createSection(), org.bukkit.configuration.ConfigurationSection.getConfigurationSection(), org.bukkit.configuration.MemorySection.getRoot(), org.bukkit.configuration.MemorySection.map, org.bukkit.configuration.Configuration.options(), and org.bukkit.configuration.ConfigurationSection.set().
| String org.bukkit.configuration.MemorySection.toString | ( | ) |
Definition at line 801 of file MemorySection.java.
References org.bukkit.configuration.MemorySection.getCurrentPath(), and org.bukkit.configuration.MemorySection.getRoot().
|
protected |
Definition at line 22 of file MemorySection.java.
Referenced by org.bukkit.configuration.MemorySection.createSection(), org.bukkit.configuration.MemorySection.get(), org.bukkit.configuration.MemorySection.mapChildrenKeys(), org.bukkit.configuration.MemorySection.mapChildrenValues(), and org.bukkit.configuration.MemorySection.set().