Enum Class DragDropSupport

java.lang.Object
java.lang.Enum<DragDropSupport>
io.wcm.handler.media.markup.DragDropSupport
All Implemented Interfaces:
Serializable, Comparable<DragDropSupport>, Constable

@ProviderType public enum DragDropSupport extends Enum<DragDropSupport>
Controls whether the markup builder should apply drag&drop support for the rendered markup. (If at all and in which WCM mode the drag&drop support depends on the implementation of the markup builder and the media source.)
  • Enum Constant Details

    • AUTO

      public static final DragDropSupport AUTO
      Check via heuristics if drag&drop should be supported. The heuristic checks if the input for the media handler was a resource, and if the path of the resource matches with the path of the current edit context.
    • NEVER

      public static final DragDropSupport NEVER
      Never apply drag&drop support.
    • ALWAYS

      public static final DragDropSupport ALWAYS
      Always apply drag&drop support (if the media markup builder and media source implemention permit it).
  • Method Details

    • values

      public static DragDropSupport[] 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 DragDropSupport 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