Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rillis/config-core

Local configuration files API.
https://github.com/rillis/config-core

api config local maven

Last synced: about 1 month ago
JSON representation

Local configuration files API.

Awesome Lists containing this project

README

        

# Config API

![Maven](https://img.shields.io/maven-central/v/com.github.rillis/configcore)
![License](https://img.shields.io/github/license/rillis/config-core)

```xml

com.github.rillis
configcore
2.2.1

```

## Docs

**Constructors:**
```java
Config(String folder, String archive) -> %APPDATA%\folder\archive
Config(String archive) -> %APPDATA%\ConfigCore\archive
Config(File archive) -> Any path.
```

**Methods:**
```java
get(String key) : Object
set(String key, Object value) : void
getKeys() : Iterator
getKeyCont() : int
has(String key) : boolean
remove(String key) : void
```