| Package | Description |
|---|---|
| nl.taico.configplus | |
| nl.taico.configplus.bukkit | |
| nl.taico.configplus.interfaces |
| Modifier and Type | Class and Description |
|---|---|
class |
Config
Represents a YAML Config.
|
class |
Section
A Section is a part of a config file.
It is basically just a path. Example config.yml:
Simple Value 1: True
Example Code:
Config config = Config.getNewConfig(getLogger(), new File(""), "config.yml"); |
class |
SectionSnapshot |
| Modifier and Type | Field and Description |
|---|---|
protected ISection |
SectionSnapshot.parent |
protected ISection |
Section.parent |
| Modifier and Type | Method and Description |
|---|---|
ISection |
SectionSnapshot.getParent() |
ISection |
Section.getParent() |
ISection |
Config.getParent() |
ISection |
SectionSnapshot.getSection(String path) |
ISection |
Section.getSection(String path) |
ISection |
Config.getSection(String path) |
ISection |
Config.getSectionSnapshot(String path)
Deprecated.
Not all functions work as you would expect them to. Please use
Config.getSection(String) instead. |
| Constructor and Description |
|---|
Section(ISection parent,
String path) |
SectionSnapshot(ISection parent,
String path) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
IBukkitSection |
| Modifier and Type | Class and Description |
|---|---|
class |
BukkitConfig
Represents a YAML Config.
|
class |
BukkitSection |
class |
BukkitSectionSnapshot |
| Constructor and Description |
|---|
BukkitSection(ISection parent,
String path) |
BukkitSectionSnapshot(ISection parent,
String path) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
IConfig |
| Modifier and Type | Class and Description |
|---|---|
class |
CSection |
| Modifier and Type | Method and Description |
|---|---|
ISection |
ISection.getParent() |
ISection |
ISection.getSection(String path)
Gets the requested
Section by path.Returns an empty section if it didn't exist. |
Copyright © 2014. All rights reserved.