Package com.helger.css
Class CCSS
- java.lang.Object
-
- com.helger.css.CCSS
-
@Immutable public final class CCSS extends Object
Contains CSS style constants and utility stuff. Only constants that are part of the CSS specification are contained in this class.
Units of measurement are based on: http://de.selfhtml.org/css/formate/wertzuweisung.htm- Author:
- Philip Helger
-
-
Field Summary
Fields Modifier and Type Field Description static intCSS_MAXIMUM_FRACTION_DIGITSThe maximum fraction digits to be considered when printing CSS decimal values.static charDEFINITION_ENDThe character to end a definition.static StringDEFINITION_END_STRThe character to end a definition.static charDOUBLE_QUOTEDouble quote for Stringsstatic StringFILE_EXTENSION_CSSRegular CSS file extensionstatic StringFILE_EXTENSION_MIN_CSSMinified CSS file extensionstatic StringIMPORTANT_SUFFIXThe "!static charSEPARATOR_PROPERTY_VALUEThe separator between a property and a value.static StringSEPARATOR_PROPERTY_VALUE_STRThe separator between a property and a value.static charSINGLE_QUOTESingle quote for Strings
-
-
-
Field Detail
-
SEPARATOR_PROPERTY_VALUE
public static final char SEPARATOR_PROPERTY_VALUE
The separator between a property and a value. (e.g. display:none)- See Also:
- Constant Field Values
-
SEPARATOR_PROPERTY_VALUE_STR
public static final String SEPARATOR_PROPERTY_VALUE_STR
The separator between a property and a value. (e.g. display:none)
-
DEFINITION_END
public static final char DEFINITION_END
The character to end a definition. (e.g. display:none;)- See Also:
- Constant Field Values
-
DEFINITION_END_STR
public static final String DEFINITION_END_STR
The character to end a definition. (e.g. display:none;)
-
FILE_EXTENSION_CSS
public static final String FILE_EXTENSION_CSS
Regular CSS file extension- See Also:
- Constant Field Values
-
FILE_EXTENSION_MIN_CSS
public static final String FILE_EXTENSION_MIN_CSS
Minified CSS file extension- See Also:
- Constant Field Values
-
IMPORTANT_SUFFIX
public static final String IMPORTANT_SUFFIX
The "!important" suffix for property values- See Also:
- Constant Field Values
-
SINGLE_QUOTE
public static final char SINGLE_QUOTE
Single quote for Strings- See Also:
- Constant Field Values
-
DOUBLE_QUOTE
public static final char DOUBLE_QUOTE
Double quote for Strings- See Also:
- Constant Field Values
-
CSS_MAXIMUM_FRACTION_DIGITS
public static final int CSS_MAXIMUM_FRACTION_DIGITS
The maximum fraction digits to be considered when printing CSS decimal values.- Since:
- 3.7.3
- See Also:
- Constant Field Values
-
-