Package com.djrapitops.plan.gathering
Class BukkitSensor
- java.lang.Object
-
- com.djrapitops.plan.gathering.BukkitSensor
-
- All Implemented Interfaces:
ServerSensor<org.bukkit.World>
@Singleton public class BukkitSensor extends java.lang.Object implements ServerSensor<org.bukkit.World>
-
-
Constructor Summary
Constructors Constructor Description BukkitSensor(org.bukkit.Server server)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getChunkCount(org.bukkit.World world)
int
getEntityCount(org.bukkit.World world)
int
getOnlinePlayerCount()
double
getTPS()
java.lang.Iterable<org.bukkit.World>
getWorlds()
Get the worlds running on the server platform.static boolean
isPaperAvailable()
boolean
supportsDirectTPS()
Check if server platform provides TPS calculation.
-
-
-
Method Detail
-
isPaperAvailable
public static boolean isPaperAvailable()
-
supportsDirectTPS
public boolean supportsDirectTPS()
Description copied from interface:ServerSensor
Check if server platform provides TPS calculation.- Specified by:
supportsDirectTPS
in interfaceServerSensor<org.bukkit.World>
- Returns:
- false if the server doesn't count TPS.
-
getTPS
public double getTPS()
- Specified by:
getTPS
in interfaceServerSensor<org.bukkit.World>
-
getChunkCount
public int getChunkCount(org.bukkit.World world)
- Specified by:
getChunkCount
in interfaceServerSensor<org.bukkit.World>
-
getEntityCount
public int getEntityCount(org.bukkit.World world)
- Specified by:
getEntityCount
in interfaceServerSensor<org.bukkit.World>
-
getOnlinePlayerCount
public int getOnlinePlayerCount()
- Specified by:
getOnlinePlayerCount
in interfaceServerSensor<org.bukkit.World>
-
getWorlds
public java.lang.Iterable<org.bukkit.World> getWorlds()
Description copied from interface:ServerSensor
Get the worlds running on the server platform.- Specified by:
getWorlds
in interfaceServerSensor<org.bukkit.World>
- Returns:
- Empty collection if the platform doesn't support worlds.
-
-