mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI
synced 2026-02-26 05:51:12 +01:00
117 lines
2.8 KiB
Java
117 lines
2.8 KiB
Java
/*
|
|
* This file is part of PlaceholderAPI
|
|
*
|
|
* PlaceholderAPI
|
|
* Copyright (c) 2015 - 2026 PlaceholderAPI Team
|
|
*
|
|
* PlaceholderAPI free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* PlaceholderAPI is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package at.helpch.placeholderapi.configuration;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
import java.util.UUID;
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
|
|
public final class PlaceholderAPIConfig {
|
|
private boolean checkUpdates;
|
|
private boolean cloudEnabled;
|
|
private boolean debugMode;
|
|
private Boolean metrics;
|
|
private ExpansionSort cloudSorting;
|
|
private BooleanValue booleanValue;
|
|
private String dateFormat;
|
|
private ConcurrentHashMap<String, Object> expansions;
|
|
private UUID metricsUuid;
|
|
|
|
public PlaceholderAPIConfig() {
|
|
|
|
}
|
|
|
|
public boolean checkUpdates() {
|
|
return checkUpdates;
|
|
}
|
|
|
|
public boolean cloudEnabled() {
|
|
return cloudEnabled;
|
|
}
|
|
|
|
public void cloudEnabled(final boolean value) {
|
|
cloudEnabled = value;
|
|
}
|
|
|
|
public boolean debugMode() {
|
|
return debugMode;
|
|
}
|
|
|
|
public void debugMode(final boolean value) {
|
|
debugMode = value;
|
|
}
|
|
|
|
public Boolean metrics() {
|
|
return metrics;
|
|
}
|
|
|
|
public void metrics(final boolean value) {
|
|
metrics = value;
|
|
}
|
|
|
|
@NotNull
|
|
public ExpansionSort cloudSorting() {
|
|
return cloudSorting;
|
|
}
|
|
|
|
public void cloudSorting(@NotNull final ExpansionSort value) {
|
|
cloudSorting = value;
|
|
}
|
|
|
|
@NotNull
|
|
public BooleanValue booleanValue() {
|
|
return booleanValue;
|
|
}
|
|
|
|
public void booleanValue(@NotNull final BooleanValue value) {
|
|
booleanValue = value;
|
|
}
|
|
|
|
@NotNull
|
|
public String dateFormat() {
|
|
return dateFormat;
|
|
}
|
|
|
|
public void dateFormat(@NotNull final String value) {
|
|
dateFormat = value;
|
|
}
|
|
|
|
@NotNull
|
|
public Map<String, Object> expansions() {
|
|
return expansions;
|
|
}
|
|
|
|
public void expansions(@NotNull final ConcurrentHashMap<String, Object> value) {
|
|
expansions = value;
|
|
}
|
|
|
|
public UUID metricsUuid() {
|
|
return metricsUuid;
|
|
}
|
|
|
|
public void metricsUuid(@NotNull final UUID metricsUuid) {
|
|
this.metricsUuid = metricsUuid;
|
|
}
|
|
}
|