Enum AceMarkerType

java.lang.Object
java.lang.Enum<AceMarkerType>
cn.mapway.document.ui.client.component.ace.AceMarkerType
All Implemented Interfaces:
Serializable, Comparable<AceMarkerType>, java.lang.constant.Constable

public enum AceMarkerType extends Enum<AceMarkerType>
This enumeration represents the selection/marker types.
  • Enum Constant Details

    • FULL_LINE

      public static final AceMarkerType FULL_LINE
      Highlights the whole line.
    • SCREEN_LINE

      public static final AceMarkerType SCREEN_LINE
      Highlights the whole screen line.
    • TEXT

      public static final AceMarkerType TEXT
      Highlights only the range.
  • Method Details

    • values

      public static AceMarkerType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static AceMarkerType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • getName

      public String getName()
      Returns:
      the marker type name (e.g., "error")