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

com.github.houbb.heaven.support.reader.impl.StringReader Maven / Gradle / Ivy

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