Enum Class CssStringEscapeType

Object
Enum<CssStringEscapeType>
org.unbescape.css.CssStringEscapeType
All Implemented Interfaces:
Serializable, Comparable<CssStringEscapeType>, Constable

public enum CssStringEscapeType extends Enum<CssStringEscapeType>

Types of escape operations to be performed on CSS strings:

  • BACKSLASH_ESCAPES_DEFAULT_TO_COMPACT_HEXA: Use backslash escapes whenever possible (depending on the specified CssStringEscapeLevel). For escaped characters that do not have an associated backslash escape, default to using \FF* variable-length hexadecimal escapes.
  • BACKSLASH_ESCAPES_DEFAULT_TO_SIX_DIGIT_HEXA: Use backslash escapes whenever possible (depending on the specified CssStringEscapeLevel). For escaped characters that do not have an associated backslash escape, default to using \FFFFFF 6-digit hexadecimal escapes.
  • COMPACT_HEXA: Replace escaped characters with \FF* variable-length hexadecimal escapes.
  • SIX_DIGIT_HEXA: Replace escaped characters with \FFFFFF 6-digit hexadecimal escapes.

For further information, see the Glossary and the References sections at the documentation for the CssEscape class.

Since:
1.0.0
Author:
Daniel Fernández
  • Enum Constant Details

    • BACKSLASH_ESCAPES_DEFAULT_TO_COMPACT_HEXA

      public static final CssStringEscapeType BACKSLASH_ESCAPES_DEFAULT_TO_COMPACT_HEXA
      Use backslash escapes if possible, default to \FF* variable-length hexadecimal escapes.
    • BACKSLASH_ESCAPES_DEFAULT_TO_SIX_DIGIT_HEXA

      public static final CssStringEscapeType BACKSLASH_ESCAPES_DEFAULT_TO_SIX_DIGIT_HEXA
      Use backslash escapes if possible, default to \FFFFFF 6-digit hexadecimal escapes.
    • COMPACT_HEXA

      public static final CssStringEscapeType COMPACT_HEXA
      Always use \FF* variable-length hexadecimal escapes.
    • SIX_DIGIT_HEXA

      public static final CssStringEscapeType SIX_DIGIT_HEXA
      Always use \FFFFFF 6-digit hexadecimal escapes.
  • Method Details

    • values

      public static CssStringEscapeType[] 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 CssStringEscapeType 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
    • getUseBackslashEscapes

      public boolean getUseBackslashEscapes()
    • getUseCompactHexa

      public boolean getUseCompactHexa()