Enum Class CKEditorType

java.lang.Object
java.lang.Enum<CKEditorType>
com.wontlost.ckeditor.CKEditorType
All Implemented Interfaces:
Serializable, Comparable<CKEditorType>, Constable

public enum CKEditorType extends Enum<CKEditorType>
CKEditor editor types
  • Enum Constant Details

    • CLASSIC

      public static final CKEditorType CLASSIC
      Classic editor with fixed toolbar
    • BALLOON

      public static final CKEditorType BALLOON
      Balloon editor with floating toolbar on selection
    • INLINE

      public static final CKEditorType INLINE
      Inline editor for direct page editing
    • DECOUPLED

      public static final CKEditorType DECOUPLED
      Decoupled editor with separated toolbar
  • Method Details

    • values

      public static CKEditorType[] 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 CKEditorType 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
    • getJsName

      public String getJsName()
      Get JavaScript name
    • toString

      public String toString()
      Overrides:
      toString in class Enum<CKEditorType>