1
mirror of https://github.com/CarmJos/EasyConfiguration.git synced 2024-09-19 20:25:51 +00:00

docs(sample): Add sample codes. 🥚

This commit is contained in:
Carm Jos 2024-01-03 23:28:36 +08:00
parent e42de0eee7
commit 48050a52a2
2 changed files with 5 additions and 6 deletions

View File

@ -58,12 +58,13 @@ public class Sample {
ConfiguredValue<Boolean> ENABLED = ConfiguredValue.of(true);
interface INFO extends Configuration {
@HeaderComment("Configure your name!") // Header comment
ConfiguredValue<String> NAME = ConfiguredValue.of("Joker");
ConfiguredValue<Integer> AGE = ConfiguredValue.of(24);
}
}
public static void main(String[] args) {
@ -83,8 +84,7 @@ public class Sample {
```yaml
# Configurations for sample
# Enabled?
enabled: true
enabled: true # Enabled?
info:
# Configure your name!

View File

@ -52,12 +52,12 @@ public class Sample {
ConfiguredValue<Boolean> ENABLED = ConfiguredValue.of(true);
interface INFO extends Configuration {
@HeaderComment("Configure your name!") // 头部注释
ConfiguredValue<String> NAME = ConfiguredValue.of("Joker");
ConfiguredValue<Integer> AGE = ConfiguredValue.of(24);
}
}
public static void main(String[] args) {
@ -76,8 +76,7 @@ public class Sample {
```yaml
# Configurations for sample
# Enabled?
enabled: true
enabled: true # Enabled?
info:
# Configure your name!