
com.github.houbb.heaven.support.reader.impl.StringReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of heaven Show documentation
Show all versions of heaven Show documentation
Collect base useful tools for dev.
The newest version!
package com.github.houbb.heaven.support.reader.impl;
import com.github.houbb.heaven.annotation.ThreadSafe;
import com.github.houbb.heaven.support.reader.IReader;
/**
* 字符串读取类
*
* project: heaven-StringReader
* create on 2020/3/19 21:43
*
* @author binbin.hou
* @since 0.1.94
*/
@ThreadSafe
public class StringReader implements IReader {
/**
* 字符串内容
* @since 0.1.94
*/
private final String string;
public StringReader(String string) {
this.string = string;
}
@Override
public String read() {
return this.string;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy