SPIGOT-1244, SPIGOT-6860, SPIGOT-6874: Various Javadoc and formatting fixes

By: Parker Hawke <hawkeboyz2@hotmail.com>
This commit is contained in:
Bukkit/Spigot
2022-09-24 09:31:42 +10:00
parent fc3825afec
commit 869f647744
10 changed files with 62 additions and 25 deletions

View File

@@ -3,11 +3,26 @@ package org.bukkit;
import java.util.Locale;
import org.jetbrains.annotations.NotNull;
/**
* Represents a fluid type.
*/
public enum Fluid implements Keyed {
/**
* Stationary water.
*/
WATER,
/**
* Flowing water.
*/
FLOWING_WATER,
/**
* Stationary lava.
*/
LAVA,
/**
* Flowing lava.
*/
FLOWING_LAVA;
private final NamespacedKey key;