| 
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.bukkit.configuration.MemorySection
org.bukkit.configuration.MemoryConfiguration
public class MemoryConfiguration
This is a Configuration implementation that does not save or load
 from any source, and stores all values in memory only.
 This is useful for temporary Configurations for providing defaults.
| Field Summary | |
|---|---|
protected  Configuration | 
defaults
 | 
protected  MemoryConfigurationOptions | 
options
 | 
| Fields inherited from class org.bukkit.configuration.MemorySection | 
|---|
map | 
| Constructor Summary | |
|---|---|
MemoryConfiguration()
Creates an empty MemoryConfiguration with no default values. | 
|
MemoryConfiguration(Configuration defaults)
Creates an empty MemoryConfiguration using the specified Configuration
 as a source for all default values. | 
|
| Method Summary | |
|---|---|
 void | 
addDefault(String path,
           Object value)
Sets the default value in the root at the given path as provided.  | 
 void | 
addDefaults(Configuration defaults)
Sets the default values of the given paths as provided.  | 
 void | 
addDefaults(Map<String,Object> defaults)
Sets the default values of the given paths as provided.  | 
 Configuration | 
getDefaults()
Gets the source Configuration for this configuration. | 
 ConfigurationSection | 
getParent()
Gets the parent ConfigurationSection that directly contains this
 ConfigurationSection. | 
 MemoryConfigurationOptions | 
options()
Gets the ConfigurationOptions for this Configuration. | 
 void | 
setDefaults(Configuration defaults)
Sets the source of all default values for this Configuration. | 
| Methods inherited from class org.bukkit.configuration.MemorySection | 
|---|
contains, createPath, createPath, createSection, createSection, get, get, getBoolean, getBoolean, getBooleanList, getByteList, getCharacterList, getColor, getColor, getConfigurationSection, getCurrentPath, getDefault, getDefaultSection, getDouble, getDouble, getDoubleList, getFloatList, getInt, getInt, getIntegerList, getItemStack, getItemStack, getKeys, getList, getList, getLong, getLong, getLongList, getMapList, getName, getOfflinePlayer, getOfflinePlayer, getRoot, getShortList, getString, getString, getStringList, getValues, getVector, getVector, isBoolean, isColor, isConfigurationSection, isDouble, isInt, isItemStack, isList, isLong, isOfflinePlayer, isPrimitiveWrapper, isSet, isString, isVector, mapChildrenKeys, mapChildrenValues, set, toString | 
| Methods inherited from class java.lang.Object | 
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait | 
| Methods inherited from interface org.bukkit.configuration.ConfigurationSection | 
|---|
contains, createSection, createSection, get, get, getBoolean, getBoolean, getBooleanList, getByteList, getCharacterList, getColor, getColor, getConfigurationSection, getCurrentPath, getDefaultSection, getDouble, getDouble, getDoubleList, getFloatList, getInt, getInt, getIntegerList, getItemStack, getItemStack, getKeys, getList, getList, getLong, getLong, getLongList, getMapList, getName, getOfflinePlayer, getOfflinePlayer, getRoot, getShortList, getString, getString, getStringList, getValues, getVector, getVector, isBoolean, isColor, isConfigurationSection, isDouble, isInt, isItemStack, isList, isLong, isOfflinePlayer, isSet, isString, isVector, set | 
| Field Detail | 
|---|
protected Configuration defaults
protected MemoryConfigurationOptions options
| Constructor Detail | 
|---|
public MemoryConfiguration()
MemoryConfiguration with no default values.
public MemoryConfiguration(Configuration defaults)
MemoryConfiguration using the specified Configuration
 as a source for all default values.
defaults - Default value provider
IllegalArgumentException - Thrown if defaults is null| Method Detail | 
|---|
public void addDefault(String path,
                       Object value)
ConfigurationSection
 If no source Configuration was provided as a default collection,
 then a new MemoryConfiguration will be created to hold the new default
 value.
 
If value is null, the value will be removed from the default Configuration source.
 If the value as returned by ConfigurationSection.getDefaultSection() is null,
 then this will create a new section at the path, replacing anything that
 may have existed there previously.
addDefault in interface ConfigurationaddDefault in interface ConfigurationSectionaddDefault in class MemorySectionpath - Path of the value to set.value - Value to set the default to.public void addDefaults(Map<String,Object> defaults)
Configuration
 If no source Configuration was provided as a default collection,
 then a new MemoryConfiguration will be created to hold the new default
 values.
addDefaults in interface Configurationdefaults - A map of Path->Values to add to defaults.public void addDefaults(Configuration defaults)
Configuration
 If no source Configuration was provided as a default collection,
 then a new MemoryConfiguration will be created to hold the new default
 value.
 
 This method will not hold a reference to the specified Configuration, nor will it
 automatically update if that Configuration ever changes. If you require this,
 you should set the default source with Configuration.setDefaults(org.bukkit.configuration.Configuration).
addDefaults in interface Configurationdefaults - A configuration holding a list of defaults to copy.public void setDefaults(Configuration defaults)
ConfigurationConfiguration.
 If a previous source was set, or previous default values were defined, then they will not be copied to the new source.
setDefaults in interface Configurationdefaults - New source of default values for this configuration.public Configuration getDefaults()
ConfigurationConfiguration for this configuration.
 
 If no configuration source was set, but default values were added, then a
 MemoryConfiguration will be returned. If no source was set and no
 defaults were set, then this method will return null.
getDefaults in interface Configurationpublic ConfigurationSection getParent()
ConfigurationSectionConfigurationSection that directly contains this
 ConfigurationSection.
 
 For any Configuration themselves, this will return null.
 
If the section is no longer contained within its parent for any reason, such as being replaced with a different value, this may return null.
getParent in interface ConfigurationSectiongetParent in class MemorySectionpublic MemoryConfigurationOptions options()
ConfigurationConfigurationOptions for this Configuration.
 All setters through this method are chainable.
options in interface Configuration
  | 
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||