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
  • Enum Constant Details

    • AUTO_RESOLVE

      public static final VaadinCKEditorBuilder.DependencyMode AUTO_RESOLVE
      Automatically resolve all plugin dependencies (default). Missing dependencies are automatically added.
    • STRICT

      public static final VaadinCKEditorBuilder.DependencyMode STRICT
      Validate dependencies but don't auto-add them. Throws exception if dependencies are missing.
    • MANUAL

      public static final VaadinCKEditorBuilder.DependencyMode MANUAL
      No dependency checking. Use plugins exactly as specified. May cause runtime errors if dependencies are missing.
  • Method Details

    • values

      public static VaadinCKEditorBuilder.DependencyMode[] 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

      public static VaadinCKEditorBuilder.DependencyMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null