Enum CssIdentifierEscapeType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<CssIdentifierEscapeType>

    public enum CssIdentifierEscapeType
    extends java.lang.Enum<CssIdentifierEscapeType>

    Types of escape operations to be performed on CSS identifiers:

    • BACKSLASH_ESCAPES_DEFAULT_TO_COMPACT_HEXA: Use backslash escapes whenever possible (depending on the specified CssIdentifierEscapeLevel). 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 CssIdentifierEscapeLevel). 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 Detail

      • BACKSLASH_ESCAPES_DEFAULT_TO_COMPACT_HEXA

        public static final CssIdentifierEscapeType 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 CssIdentifierEscapeType BACKSLASH_ESCAPES_DEFAULT_TO_SIX_DIGIT_HEXA
        Use backslash escapes if possible, default to \FFFFFF 6-digit hexadecimal escapes.
      • COMPACT_HEXA

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

        public static final CssIdentifierEscapeType SIX_DIGIT_HEXA
        Always use \FFFFFF 6-digit hexadecimal escapes.
    • Field Detail

      • useBackslashEscapes

        private final boolean useBackslashEscapes
      • useCompactHexa

        private final boolean useCompactHexa
    • Constructor Detail

      • CssIdentifierEscapeType

        private CssIdentifierEscapeType​(boolean useBackslashEscapes,
                                        boolean useCompactHexa)
    • Method Detail

      • values

        public static CssIdentifierEscapeType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CssIdentifierEscapeType c : CssIdentifierEscapeType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CssIdentifierEscapeType valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getUseBackslashEscapes

        public boolean getUseBackslashEscapes()
      • getUseCompactHexa

        public boolean getUseCompactHexa()