Skip to content

Instantly share code, notes, and snippets.

@Xezard
Xezard / ConfigurationType.java
Last active January 4, 2023 22:54
Simple yml configurations manager for bukkit / spigot.
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter
@AllArgsConstructor
@FieldDefaults(level = AccessLevel.PRIVATE, makeFinal = true)
public enum ConfigurationType {
CONFIG("config.yml"),
MESSAGES("messages.yml");