mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-02-08 08:21:30 +01:00
Fixed javadoc errors
This commit is contained in:
parent
69efa14825
commit
7581968e27
@ -32,7 +32,7 @@ import java.lang.annotation.Target;
|
|||||||
* For example:
|
* For example:
|
||||||
* {@code @GroupProvider public String[] getJobs(UUID playerUUID) {}}
|
* {@code @GroupProvider public String[] getJobs(UUID playerUUID) {}}
|
||||||
* <p>
|
* <p>
|
||||||
* Group data is parsed as Table for /server & /network page and similar to {@link StringProvider} for /player page.
|
* Group data is parsed as Table for /server and /network page and similar to {@link StringProvider} for /player page.
|
||||||
* <p>
|
* <p>
|
||||||
* Requires Capability {@code DATA_EXTENSION_GROUPS}
|
* Requires Capability {@code DATA_EXTENSION_GROUPS}
|
||||||
*
|
*
|
||||||
|
@ -30,7 +30,6 @@ import java.util.UUID;
|
|||||||
* Keys for the ServerContainer.
|
* Keys for the ServerContainer.
|
||||||
*
|
*
|
||||||
* @author Rsl1122
|
* @author Rsl1122
|
||||||
* @see com.djrapitops.plan.storage.database.databases.sql.operation.SQLFetchOps For Suppliers for each key
|
|
||||||
* @see ServerContainer For DataContainer.
|
* @see ServerContainer For DataContainer.
|
||||||
*/
|
*/
|
||||||
public class ServerKeys {
|
public class ServerKeys {
|
||||||
|
@ -28,7 +28,7 @@ import java.util.*;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parses JSON payload for /server-page PvP & PvE tab.
|
* Parses JSON payload for /server-page PvP and PvE tab.
|
||||||
*
|
*
|
||||||
* @author Rsl1122
|
* @author Rsl1122
|
||||||
*/
|
*/
|
||||||
|
@ -76,11 +76,11 @@ public interface Database {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Possible State changes:
|
* Possible State changes:
|
||||||
* CLOSED -> PATCHING (Database init),
|
* CLOSED to PATCHING (Database init),
|
||||||
* PATCHING -> OPEN (Database initialized),
|
* PATCHING to OPEN (Database initialized),
|
||||||
* OPEN -> CLOSING (Database closing),
|
* OPEN to CLOSING (Database closing),
|
||||||
* CLOSING -> CLOSED (Database closed),
|
* CLOSING to CLOSED (Database closed),
|
||||||
* PATCHING -> CLOSED (Database closed prematurely)
|
* PATCHING to CLOSED (Database closed prematurely)
|
||||||
*/
|
*/
|
||||||
enum State {
|
enum State {
|
||||||
CLOSED,
|
CLOSED,
|
||||||
|
Loading…
Reference in New Issue
Block a user