Enum HelpLang
- java.lang.Object
-
- java.lang.Enum<HelpLang>
-
- com.djrapitops.plan.settings.locale.lang.HelpLang
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDefault()
java.lang.String
getIdentifier()
static HelpLang
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HelpLang[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARG_SERVER
public static final HelpLang ARG_SERVER
-
ARG_NAME_UUID
public static final HelpLang ARG_NAME_UUID
-
ARG_CODE
public static final HelpLang ARG_CODE
-
ARG_USERNAME
public static final HelpLang ARG_USERNAME
-
ARG_FEATURE
public static final HelpLang ARG_FEATURE
-
ARG_SUBCOMMAND
public static final HelpLang ARG_SUBCOMMAND
-
ARG_BACKUP_FILE
public static final HelpLang ARG_BACKUP_FILE
-
ARG_EXPORT_KIND
public static final HelpLang ARG_EXPORT_KIND
-
ARG_IMPORT_KIND
public static final HelpLang ARG_IMPORT_KIND
-
DESC_ARG_SERVER_IDENTIFIER
public static final HelpLang DESC_ARG_SERVER_IDENTIFIER
-
DESC_ARG_PLAYER_IDENTIFIER
public static final HelpLang DESC_ARG_PLAYER_IDENTIFIER
-
DESC_ARG_PLAYER_IDENTIFIER_REMOVE
public static final HelpLang DESC_ARG_PLAYER_IDENTIFIER_REMOVE
-
DESC_ARG_CODE
public static final HelpLang DESC_ARG_CODE
-
DESC_ARG_USERNAME
public static final HelpLang DESC_ARG_USERNAME
-
DESC_ARG_FEATURE
public static final HelpLang DESC_ARG_FEATURE
-
DESC_ARG_SUBCOMMAND
public static final HelpLang DESC_ARG_SUBCOMMAND
-
DESC_ARG_BACKUP_FILE
public static final HelpLang DESC_ARG_BACKUP_FILE
-
DESC_ARG_DB_BACKUP
public static final HelpLang DESC_ARG_DB_BACKUP
-
DESC_ARG_DB_RESTORE
public static final HelpLang DESC_ARG_DB_RESTORE
-
DESC_ARG_DB_MOVE_FROM
public static final HelpLang DESC_ARG_DB_MOVE_FROM
-
DESC_ARG_DB_MOVE_TO
public static final HelpLang DESC_ARG_DB_MOVE_TO
-
DESC_ARG_DB_HOTSWAP
public static final HelpLang DESC_ARG_DB_HOTSWAP
-
DESC_ARG_DB_REMOVE
public static final HelpLang DESC_ARG_DB_REMOVE
-
SERVER
public static final HelpLang SERVER
-
SERVERS
public static final HelpLang SERVERS
-
NETWORK
public static final HelpLang NETWORK
-
PLAYER
public static final HelpLang PLAYER
-
PLAYERS
public static final HelpLang PLAYERS
-
SEARCH
public static final HelpLang SEARCH
-
INGAME
public static final HelpLang INGAME
-
REGISTER
public static final HelpLang REGISTER
-
UNREGISTER
public static final HelpLang UNREGISTER
-
INFO
public static final HelpLang INFO
-
RELOAD
public static final HelpLang RELOAD
-
DISABLE
public static final HelpLang DISABLE
-
USERS
public static final HelpLang USERS
-
DB
public static final HelpLang DB
-
DB_BACKUP
public static final HelpLang DB_BACKUP
-
DB_RESTORE
public static final HelpLang DB_RESTORE
-
DB_MOVE
public static final HelpLang DB_MOVE
-
DB_HOTSWAP
public static final HelpLang DB_HOTSWAP
-
DB_CLEAR
public static final HelpLang DB_CLEAR
-
DB_REMOVE
public static final HelpLang DB_REMOVE
-
DB_UNINSTALLED
public static final HelpLang DB_UNINSTALLED
-
EXPORT
public static final HelpLang EXPORT
-
IMPORT
public static final HelpLang IMPORT
-
JSON
public static final HelpLang JSON
-
LOGOUT
public static final HelpLang LOGOUT
-
-
Method Detail
-
values
public static HelpLang[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (HelpLang c : HelpLang.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HelpLang valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getIdentifier
public java.lang.String getIdentifier()
- Specified by:
getIdentifier
in interfaceLang
-
getDefault
public java.lang.String getDefault()
- Specified by:
getDefault
in interfaceLang
-
-