Enum DeepHelpLang
- java.lang.Object
-
- java.lang.Enum<DeepHelpLang>
-
- com.djrapitops.plan.settings.locale.lang.DeepHelpLang
-
- All Implemented Interfaces:
Lang
,java.io.Serializable
,java.lang.Comparable<DeepHelpLang>
public enum DeepHelpLang extends java.lang.Enum<DeepHelpLang> implements Lang
Lang
implementation for in depth help language when /command ? is used.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDefault()
java.lang.String
getIdentifier()
static DeepHelpLang
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DeepHelpLang[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SERVER
public static final DeepHelpLang SERVER
-
SERVERS
public static final DeepHelpLang SERVERS
-
NETWORK
public static final DeepHelpLang NETWORK
-
PLAYER
public static final DeepHelpLang PLAYER
-
PLAYERS
public static final DeepHelpLang PLAYERS
-
SEARCH
public static final DeepHelpLang SEARCH
-
INGAME
public static final DeepHelpLang INGAME
-
REGISTER
public static final DeepHelpLang REGISTER
-
UNREGISTER
public static final DeepHelpLang UNREGISTER
-
INFO
public static final DeepHelpLang INFO
-
RELOAD
public static final DeepHelpLang RELOAD
-
DISABLE
public static final DeepHelpLang DISABLE
-
USERS
public static final DeepHelpLang USERS
-
DB
public static final DeepHelpLang DB
-
DB_BACKUP
public static final DeepHelpLang DB_BACKUP
-
DB_RESTORE
public static final DeepHelpLang DB_RESTORE
-
DB_MOVE
public static final DeepHelpLang DB_MOVE
-
DB_HOTSWAP
public static final DeepHelpLang DB_HOTSWAP
-
DB_CLEAR
public static final DeepHelpLang DB_CLEAR
-
DB_REMOVE
public static final DeepHelpLang DB_REMOVE
-
DB_UNINSTALLED
public static final DeepHelpLang DB_UNINSTALLED
-
EXPORT
public static final DeepHelpLang EXPORT
-
IMPORT
public static final DeepHelpLang IMPORT
-
JSON
public static final DeepHelpLang JSON
-
-
Method Detail
-
values
public static DeepHelpLang[] 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 (DeepHelpLang c : DeepHelpLang.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeepHelpLang 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
-
-