2020-07-27 09:21:35 +02:00
|
|
|
/*
|
|
|
|
* This file is part of PlaceholderAPI
|
|
|
|
*
|
|
|
|
* PlaceholderAPI
|
2021-01-20 21:29:13 +01:00
|
|
|
* Copyright (c) 2015 - 2021 PlaceholderAPI Team
|
2020-07-27 09:21:35 +02:00
|
|
|
*
|
2021-12-24 05:26:22 +01:00
|
|
|
* PlaceholderAPI free software: you can redistribute it and/or modify
|
2020-07-27 09:21:35 +02:00
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2020-07-20 22:59:25 +02:00
|
|
|
package me.clip.placeholderapi.replacer;
|
|
|
|
|
2020-08-01 04:52:07 +02:00
|
|
|
import java.util.function.Function;
|
2020-07-27 00:03:31 +02:00
|
|
|
import me.clip.placeholderapi.expansion.PlaceholderExpansion;
|
2020-07-20 22:59:25 +02:00
|
|
|
import org.bukkit.OfflinePlayer;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
|
2020-08-01 04:52:07 +02:00
|
|
|
public interface Replacer {
|
2020-07-20 22:59:25 +02:00
|
|
|
|
2020-08-01 04:52:07 +02:00
|
|
|
@NotNull
|
|
|
|
String apply(@NotNull final String text, @Nullable final OfflinePlayer player,
|
|
|
|
@NotNull final Function<String, @Nullable PlaceholderExpansion> lookup);
|
2020-07-20 22:59:25 +02:00
|
|
|
|
|
|
|
|
2020-08-01 04:52:07 +02:00
|
|
|
enum Closure {
|
|
|
|
BRACKET('{', '}'),
|
|
|
|
PERCENT('%', '%');
|
2020-07-20 22:59:25 +02:00
|
|
|
|
|
|
|
|
2020-08-01 04:52:07 +02:00
|
|
|
public final char head, tail;
|
2020-07-20 22:59:25 +02:00
|
|
|
|
2020-08-01 04:52:07 +02:00
|
|
|
Closure(final char head, final char tail) {
|
|
|
|
this.head = head;
|
|
|
|
this.tail = tail;
|
|
|
|
}
|
|
|
|
}
|
2020-07-20 22:59:25 +02:00
|
|
|
|
|
|
|
}
|