Example usage for org.springframework.data.gemfire.repository.query QueryString toString

List of usage examples for org.springframework.data.gemfire.repository.query QueryString toString

Introduction

In this page you can find the example usage for org.springframework.data.gemfire.repository.query QueryString toString.

Prototype

@Override
public String toString() 

Source Link

Document

Returns a String representation of this QueryString .

Usage

From source file:org.springframework.data.gemfire.repository.query.GemfireQueryCreator.java

@Override
protected QueryString complete(Predicates criteria, Sort sort) {
    QueryString result = query.create(criteria).orderBy(sort);

    if (LOG.isDebugEnabled()) {
        LOG.debug(String.format("Created Query '%1$s'", result.toString()));
    }/*w  w w. jav a2 s  . c o  m*/

    return result;
}