Enum Class ActivityPluginType
- All Implemented Interfaces:
Serializable,Comparable<ActivityPluginType>,Constable
Enum of eXo activity plugin types
This enum is a hack to apply customizations based on the activity plugin type.
Ideally these customizations are done only by the plugins, not by the core.
The existence of this class means there is a lack of pluggability.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptiongetName()static ActivityPluginTypeReturns the enum constant of this class with the specified name.static ActivityPluginType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
-
LINK
-
DOC
-
SPACE
-
PROFILE
-
FILE
-
SHARE_FILE
-
CONTENT
-
CALENDAR
-
TASK
-
FORUM
-
ANSWER
-
POLL
-
WIKI
-
-
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
-
getName
-