Enum Class VaadinCKEditorBuilder.DependencyMode
java.lang.Object
java.lang.Enum<VaadinCKEditorBuilder.DependencyMode>
com.wontlost.ckeditor.VaadinCKEditorBuilder.DependencyMode
- All Implemented Interfaces:
Serializable, Comparable<VaadinCKEditorBuilder.DependencyMode>, Constable
- Enclosing class:
VaadinCKEditorBuilder
public static enum VaadinCKEditorBuilder.DependencyMode
extends Enum<VaadinCKEditorBuilder.DependencyMode>
Dependency resolution mode for plugins
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAutomatically resolve all plugin dependencies (default).Resolve dependencies and include recommended plugins.No dependency checking.Validate dependencies but don't auto-add them. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static VaadinCKEditorBuilder.DependencyMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AUTO_RESOLVE
Automatically resolve all plugin dependencies (default). Missing dependencies are automatically added. -
AUTO_RESOLVE_WITH_RECOMMENDED
Resolve dependencies and include recommended plugins. Provides the most complete feature set. -
STRICT
Validate dependencies but don't auto-add them. Throws exception if dependencies are missing. -
MANUAL
No dependency checking. Use plugins exactly as specified. May cause runtime errors if dependencies are missing.
-
-
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
-