Package org.unbescape.css
Enum CssIdentifierEscapeType
- java.lang.Object
-
- java.lang.Enum<CssIdentifierEscapeType>
-
- org.unbescape.css.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 Summary
Enum Constants Enum Constant Description 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
Use backslash escapes if possible, default to \FFFFFF 6-digit hexadecimal escapes.COMPACT_HEXA
Always use \FF* variable-length hexadecimal escapes.SIX_DIGIT_HEXA
Always use \FFFFFF 6-digit hexadecimal escapes.
-
Field Summary
Fields Modifier and Type Field Description private boolean
useBackslashEscapes
private boolean
useCompactHexa
-
Constructor Summary
Constructors Modifier Constructor Description private
CssIdentifierEscapeType(boolean useBackslashEscapes, boolean useCompactHexa)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getUseBackslashEscapes()
boolean
getUseCompactHexa()
static CssIdentifierEscapeType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CssIdentifierEscapeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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.
-
-
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 namejava.lang.NullPointerException
- if the argument is null
-
getUseBackslashEscapes
public boolean getUseBackslashEscapes()
-
getUseCompactHexa
public boolean getUseCompactHexa()
-
-