Example usage for org.springframework.data.mongodb.repository.query ConvertingParameterAccessor getBindableValue

List of usage examples for org.springframework.data.mongodb.repository.query ConvertingParameterAccessor getBindableValue

Introduction

In this page you can find the example usage for org.springframework.data.mongodb.repository.query ConvertingParameterAccessor getBindableValue.

Prototype

public Object getBindableValue(int index) 

Source Link

Usage

From source file:org.springframework.data.mongodb.repository.query.StringBasedMongoQuery.java

private String getParameterWithIndex(ConvertingParameterAccessor accessor, int index) {
    return JSON.serialize(accessor.getBindableValue(index));
}