mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-16 21:01:10 +08:00
35 lines
569 B
Java
35 lines
569 B
Java
/*
|
|
* Copyright (c) 2010 Mysema Ltd.
|
|
* All rights reserved.
|
|
*
|
|
*/
|
|
package com.mysema.query.sql;
|
|
|
|
|
|
import com.mysema.query.QueryMetadata;
|
|
|
|
/**
|
|
* @author tiwe
|
|
*
|
|
*/
|
|
public interface SerializationContext {
|
|
|
|
/**
|
|
* @param metadata
|
|
* @param forCountRow
|
|
*/
|
|
void serialize(QueryMetadata metadata, boolean forCountRow);
|
|
|
|
/**
|
|
* @param str
|
|
*/
|
|
SerializationContext append(String str);
|
|
|
|
/**
|
|
* @param string
|
|
* @param offset
|
|
*/
|
|
void handle(String template, Object... args);
|
|
|
|
}
|