Enum Class Words
- All Implemented Interfaces:
Serializable
,Comparable<Words>
,Constable
Enum containing keys, for some useful words, that has to be used with the
i18n mechanism.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents the keyword "ABOUT".Represents the keyword "COMMUNITY".Represents the keyword "CREATED".Represents the keyword "DIRECTORY".Represents the keyword "DISPLAY".Represents the keyword "ENTERING".Represents the keyword "EXITING".Represents the keyword "FAILED".Represents the keyword "GROUP".Represents the keyword "HELP".Represents the keyword "INITIAL_CONFIG".Represents the keyword "LAST_AVAILABLE".Represents the keyword "LAUNCH".Represents the keyword "MAS".Represents the keyword "NEW_MSG".Represents the keyword "PAUSE".Represents the keyword "RELOAD".Represents the keyword "ROLE".Represents the keyword "TERMINATED".Represents the keyword "TUTORIALS". -
Method Summary
Modifier and TypeMethodDescriptiontoString()
Returns the name of this enum constant, as contained in the declaration.static Words
Returns the enum constant of this class with the specified name.static Words[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FAILED
Represents the keyword "FAILED". -
COMMUNITY
Represents the keyword "COMMUNITY". -
GROUP
Represents the keyword "GROUP". -
ROLE
Represents the keyword "ROLE". -
LAUNCH
Represents the keyword "LAUNCH". -
ENTERING
Represents the keyword "ENTERING". -
EXITING
Represents the keyword "EXITING". -
TERMINATED
Represents the keyword "TERMINATED". -
INITIAL_CONFIG
Represents the keyword "INITIAL_CONFIG". -
RELOAD
Represents the keyword "RELOAD". -
DIRECTORY
Represents the keyword "DIRECTORY". -
MAS
Represents the keyword "MAS". -
PAUSE
Represents the keyword "PAUSE". -
NEW_MSG
Represents the keyword "NEW_MSG". -
ABOUT
Represents the keyword "ABOUT". -
HELP
Represents the keyword "HELP". -
TUTORIALS
Represents the keyword "TUTORIALS". -
LAST_AVAILABLE
Represents the keyword "LAST_AVAILABLE". -
CREATED
Represents the keyword "CREATED". -
DISPLAY
Represents the keyword "DISPLAY".
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
-