CelParserBuilder |
CelParserBuilder.addLibraries(CelParserLibrary... libraries) |
Adds one or more libraries for parsing
|
CelParserBuilder |
CelParserBuilder.addLibraries(java.lang.Iterable<? extends CelParserLibrary> libraries) |
Adds a collection of libraries for parsing
|
CelParserBuilder |
CelParserBuilder.addMacros(CelMacro... macros) |
Registers the given macros, replacing any previous macros with the same key.
|
CelParserBuilder |
CelParserBuilder.addMacros(java.lang.Iterable<CelMacro> macros) |
Registers the given macros, replacing any previous macros with the same key.
|
CelParserBuilder |
CelParserBuilder.setOptions(CelOptions celOptions) |
Configures the CelOptions used to enable fixes within the parser.
|
CelParserBuilder |
CelParserBuilder.setStandardMacros(CelStandardMacro... macros) |
Sets the macro set defined as part of CEL standard library for the parser, replacing the macros
from any prior call.
|
CelParserBuilder |
CelParserBuilder.setStandardMacros(java.lang.Iterable<CelStandardMacro> macros) |
Sets the macro set defined as part of CEL standard library for the parser, replacing the macros
from any prior call.
|
static CelParserBuilder |
CelParserFactory.standardCelParserBuilder() |
Configure a builder to construct a current CelParser instance.
|