All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bixuebihui.r2dbc.sql.ClobString Maven / Gradle / Ivy

The newest version!
package com.bixuebihui.r2dbc.sql;


/**
 * 用于支持Oracle的CLOB字段
 *
 * @author xingwx
 * @version $Id: $Id
 */
public class ClobString {
	private String content;

    /**
     * 

Constructor for ClobString.

* * @param content a {@link String} object. */ public ClobString(String content){ this.content = content; } /** *

Getter for the field content.

* * @return a {@link String} object. */ public String getContent() { return content; } /** *

Setter for the field content.

* * @param content a {@link String} object. */ public void setContent(String content) { this.content = content; } /** *

toString.

* * @return a {@link String} object. */ @Override public String toString() { return content; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy