Class ExecutionConfig
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the predicate to determine if annotation collection is allowed for a particular keyword.Gets the format assertion enabled flag.Gets the locale to use for formatting messages.boolean
Return if annotation collection is enabled.boolean
Gets if debugging features such as logging is switched on.boolean
Return if fast fail is enabled.void
setAnnotationCollectionEnabled
(boolean annotationCollectionEnabled) Sets whether the annotation collection is enabled.void
setAnnotationCollectionFilter
(Predicate<String> annotationCollectionFilter) Predicate to determine if annotation collection is allowed for a particular keyword.void
setDebugEnabled
(boolean debugEnabled) Sets if debugging features such as logging is switched on.void
setFailFast
(boolean failFast) Sets whether fast fail is enabled.void
setFormatAssertionsEnabled
(Boolean formatAssertionsEnabled) Sets the format assertion enabled flag.void
Sets the locale to use for formatting messages.
-
Constructor Details
-
ExecutionConfig
public ExecutionConfig()
-
-
Method Details
-
getLocale
Gets the locale to use for formatting messages.- Returns:
- the locale
-
setLocale
Sets the locale to use for formatting messages.- Parameters:
locale
- the locale
-
getFormatAssertionsEnabled
Gets the format assertion enabled flag.This defaults to null meaning that it will follow the defaults of the specification.
Since draft 2019-09 this will default to false unless enabled by using the $vocabulary keyword.
- Returns:
- the format assertions enabled flag
-
setFormatAssertionsEnabled
Sets the format assertion enabled flag.- Parameters:
formatAssertionsEnabled
- the format assertions enabled flag
-
isFailFast
public boolean isFailFast()Return if fast fail is enabled.- Returns:
- if fast fail is enabled
-
setFailFast
public void setFailFast(boolean failFast) Sets whether fast fail is enabled.- Parameters:
failFast
- true to fast fail
-
isAnnotationCollectionEnabled
public boolean isAnnotationCollectionEnabled()Return if annotation collection is enabled.This does not affect annotation collection required for evaluating keywords such as unevaluatedItems or unevaluatedProperties and only affects reporting.
The annotations to collect can be customized using the annotation collection predicate.
- Returns:
- if annotation collection is enabled
-
setAnnotationCollectionEnabled
public void setAnnotationCollectionEnabled(boolean annotationCollectionEnabled) Sets whether the annotation collection is enabled.This does not affect annotation collection required for evaluating keywords such as unevaluatedItems or unevaluatedProperties and only affects reporting.
The annotations to collect can be customized using the annotation collection predicate.
- Parameters:
annotationCollectionEnabled
- true to enable annotation collection
-
getAnnotationCollectionFilter
Gets the predicate to determine if annotation collection is allowed for a particular keyword. This only has an effect if annotation collection is enabled.The default value is to not collect any annotation keywords if annotation collection is enabled.
This does not affect annotation collection required for evaluating keywords such as unevaluatedItems or unevaluatedProperties and only affects reporting.
- Returns:
- the predicate to determine if annotation collection is allowed for the keyword
-
setAnnotationCollectionFilter
Predicate to determine if annotation collection is allowed for a particular keyword. This only has an effect if annotation collection is enabled.The default value is to not collect any annotation keywords if annotation collection is enabled.
This does not affect annotation collection required for evaluating keywords such as unevaluatedItems or unevaluatedProperties and only affects reporting.
- Parameters:
annotationCollectionFilter
- the predicate accepting the keyword
-
isDebugEnabled
public boolean isDebugEnabled()Gets if debugging features such as logging is switched on.- Returns:
- true if debug is enabled
-
setDebugEnabled
public void setDebugEnabled(boolean debugEnabled) Sets if debugging features such as logging is switched on.- Parameters:
debugEnabled
- true to enable debug
-