Class ListStyleShorthandResolver
- java.lang.Object
-
- com.itextpdf.styledxmlparser.css.resolve.shorthand.impl.ListStyleShorthandResolver
-
- All Implemented Interfaces:
IShorthandResolver
public class ListStyleShorthandResolver extends java.lang.Object implements IShorthandResolver
IShorthandResolver
implementation for list styles.
-
-
Field Summary
Fields Modifier and Type Field Description private static java.util.Set<java.lang.String>
LIST_STYLE_POSITION_VALUES
The list style positions (inside, outside).private static java.util.Set<java.lang.String>
LIST_STYLE_TYPE_VALUES
The list style types (disc, decimal,...).
-
Constructor Summary
Constructors Constructor Description ListStyleShorthandResolver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<CssDeclaration>
resolveShorthand(java.lang.String shorthandExpression)
Resolves a shorthand expression.
-
-
-
Field Detail
-
LIST_STYLE_TYPE_VALUES
private static final java.util.Set<java.lang.String> LIST_STYLE_TYPE_VALUES
The list style types (disc, decimal,...).
-
LIST_STYLE_POSITION_VALUES
private static final java.util.Set<java.lang.String> LIST_STYLE_POSITION_VALUES
The list style positions (inside, outside).
-
-
Method Detail
-
resolveShorthand
public java.util.List<CssDeclaration> resolveShorthand(java.lang.String shorthandExpression)
Description copied from interface:IShorthandResolver
Resolves a shorthand expression.- Specified by:
resolveShorthand
in interfaceIShorthandResolver
- Parameters:
shorthandExpression
- the shorthand expression- Returns:
- a list of CSS declaration
-
-