mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-15 00:43:33 +00:00
19 lines
341 B
Java
19 lines
341 B
Java
|
package com.sk89q.util.yaml;
|
||
|
|
||
|
import org.yaml.snakeyaml.DumperOptions.FlowStyle;
|
||
|
|
||
|
public enum YAMLFormat {
|
||
|
EXTENDED(FlowStyle.BLOCK),
|
||
|
COMPACT(FlowStyle.AUTO);
|
||
|
|
||
|
private final FlowStyle style;
|
||
|
|
||
|
YAMLFormat(FlowStyle style) {
|
||
|
this.style = style;
|
||
|
}
|
||
|
|
||
|
public FlowStyle getStyle() {
|
||
|
return style;
|
||
|
}
|
||
|
}
|