java.lang.Object
com.djrapitops.plan.storage.database.queries.objects.KillQueries

public class KillQueries extends Object
Queries for PlayerKill objects.
  • Method Details

    • fetchPlayerKillsOnServer

      public static Query<List<PlayerKill>> fetchPlayerKillsOnServer(ServerUUID serverUUID, int limit)
    • fetchPlayerKillsOfPlayer

      public static Query<List<PlayerKill>> fetchPlayerKillsOfPlayer(UUID playerUUID)
    • fetchPlayerDeathsOfPlayer

      public static Query<List<PlayerKill>> fetchPlayerDeathsOfPlayer(UUID playerUUID)
    • playerKillCount

      public static Query<Long> playerKillCount(long after, long before, ServerUUID serverUUID)
    • averageKDR

      public static Query<Double> averageKDR(long after, long before, ServerUUID serverUUID)
    • mobKillCount

      public static Query<Long> mobKillCount(long after, long before, ServerUUID serverUUID)
    • deathCount

      public static Query<Long> deathCount(long after, long before, ServerUUID serverUUID)
    • topWeaponsOfServer

      public static Query<List<String>> topWeaponsOfServer(long after, long before, ServerUUID serverUUID, int limit)
    • topWeaponsOfPlayer

      public static Query<List<String>> topWeaponsOfPlayer(long after, long before, UUID playerUUID, int limit)