Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/rillis/config-core
- Owner: rillis
- License: apache-2.0
- Created: 2020-04-30T23:58:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-04-14T17:56:28.000Z (over 1 year ago)
- Last Synced: 2023-07-16T22:04:30.432Z (over 1 year ago)
- Topics: api, config, local, maven
- Language: Java
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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
```