| Constructor and description |
|---|
IContextExtensions() |
| Type Params | Return Type | Name and description |
|---|---|---|
|
static Object |
getAt(IContext self, String name)Enables use of the value = context[key] syntax over the context
object, is a synonym for the getVariable method. |
|
static String |
getPrefixForDialect(IContext self, Class<IProcessorDialect> dialectClass)Returns the configured prefix for the given dialect. |
|
static void |
putAt(IContext self, String name, Object value)Enables use of the context[key] = value syntax over the context
object, is a synonym for the setVariable method. |
Enables use of the value = context[key] syntax over the context
object, is a synonym for the getVariable method.
name - Name of the variable on the context to retrieve.null if the variable isn't
mapped to anything on the context.Returns the configured prefix for the given dialect. If the dialect prefix has not been configured.
null if the
dialect being queried hasn't been configured.