Class CssProcessingOptions
- java.lang.Object
-
- de.xima.fc.gui.designer.form.utils.CssProcessingOptions
-
public final class CssProcessingOptions extends Object
Options for processing CSS files, seeFormCssHelper
.- Since:
- 8.3.6
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CssProcessingOptions.Builder
A builder forCssProcessingOptions
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CssProcessingOptions.Builder
builder()
Creates a new builder forCssProcessingOptions
.Predicate<URI>
invalidCertificateAllowanceChecker()
Gets the predicate to check if invalid certificates are allowed for the given URL.UnaryOperator<URI>
urlPostProcessor()
Gets the post processor for URLs in the CSS files.
-
-
-
Method Detail
-
invalidCertificateAllowanceChecker
public Predicate<URI> invalidCertificateAllowanceChecker()
Gets the predicate to check if invalid certificates are allowed for the given URL.- Returns:
- The checker, never null.
-
urlPostProcessor
public UnaryOperator<URI> urlPostProcessor()
Gets the post processor for URLs in the CSS files. This is applied e.g. to the font face URLs.- Returns:
- The post processor, never null.
-
builder
public static CssProcessingOptions.Builder builder()
Creates a new builder forCssProcessingOptions
.- Returns:
- The new builder, never null.
-
-