public class SQLBindings extends Object
SQLBindings provides the SQL query string and bindings| Constructor and Description |
|---|
SQLBindings(String sql,
com.google.common.collect.ImmutableList<Object> bindings)
Deprecated.
|
SQLBindings(String sql,
List<Object> bindings) |
| Modifier and Type | Method and Description |
|---|---|
com.google.common.collect.ImmutableList<Object> |
getBindings()
Deprecated.
use
getNullFriendlyBindings() instead - this method is broken as null is a meaningful element
and ImmutableList is null-hostile. |
List<Object> |
getNullFriendlyBindings() |
String |
getSQL() |
@Deprecated public SQLBindings(String sql, com.google.common.collect.ImmutableList<Object> bindings)
public String getSQL()
@Deprecated public com.google.common.collect.ImmutableList<Object> getBindings()
getNullFriendlyBindings() instead - this method is broken as null is a meaningful element
and ImmutableList is null-hostile.getNullFriendlyBindings(), with nulls removedCopyright © 2007–2020 Querydsl. All rights reserved.