Uses of Class
com.azure.data.cosmos.SqlParameter
-
Packages that use SqlParameter Package Description com.azure.data.cosmos This package provides Rx interfaces for interacting with Azure Cosmos DB. -
-
Uses of SqlParameter in com.azure.data.cosmos
Methods in com.azure.data.cosmos that return SqlParameter Modifier and Type Method Description SqlParameter
SqlParameterList. get(int index)
SqlParameter
SqlParameter. name(String name)
Sets the name of the parameter.SqlParameter
SqlParameterList. remove(int index)
SqlParameter
SqlParameterList. set(int index, SqlParameter element)
SqlParameter
SqlParameter. value(Object value)
Sets the value of the parameter.Methods in com.azure.data.cosmos that return types with arguments of type SqlParameter Modifier and Type Method Description Iterator<SqlParameter>
SqlParameterList. iterator()
ListIterator<SqlParameter>
SqlParameterList. listIterator()
ListIterator<SqlParameter>
SqlParameterList. listIterator(int index)
List<SqlParameter>
SqlParameterList. subList(int fromIndex, int toIndex)
Methods in com.azure.data.cosmos with parameters of type SqlParameter Modifier and Type Method Description void
SqlParameterList. add(int index, SqlParameter element)
boolean
SqlParameterList. add(SqlParameter parameter)
SqlParameter
SqlParameterList. set(int index, SqlParameter element)
Method parameters in com.azure.data.cosmos with type arguments of type SqlParameter Modifier and Type Method Description boolean
SqlParameterList. addAll(int index, Collection<? extends SqlParameter> c)
boolean
SqlParameterList. addAll(Collection<? extends SqlParameter> parameters)
Constructors in com.azure.data.cosmos with parameters of type SqlParameter Constructor Description SqlParameterList(SqlParameter... parameters)
Initializes a new instance of the SqlParameterList class from an array of parameters.Constructor parameters in com.azure.data.cosmos with type arguments of type SqlParameter Constructor Description SqlParameterList(Collection<SqlParameter> parameters)
Initializes a new instance of the SqlParameterList class from a collection of parameters.
-