Enum CssStringEscapeType

java.lang.Object
java.lang.Enum<CssStringEscapeType>
org.unbescape.css.CssStringEscapeType
All Implemented Interfaces:
Serializable, Comparable<CssStringEscapeType>, java.lang.constant.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
  • 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.
  • Field Details

    • useBackslashEscapes

      private final boolean useBackslashEscapes
    • useCompactHexa

      private final boolean useCompactHexa
  • Constructor Details

    • CssStringEscapeType

      private CssStringEscapeType(boolean useBackslashEscapes, boolean useCompactHexa)
  • Method Details

    • values

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

      public boolean getUseBackslashEscapes()
    • getUseCompactHexa

      public boolean getUseCompactHexa()