Binds a variable. @param name name of variable (if null, value will be bound as context value) @param value value to be bound (XQuery value; any other value will be converted to a string) @return self reference
(final String name, final Object value)
| 25 | * @return self reference |
| 26 | */ |
| 27 | public XQuery bind(final String name, final Object value) { |
| 28 | return bind(name, new SimpleEntry<>(value, null)); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Binds a variable. |
no test coverage detected