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

com.github.siwenyan.dish_parser.StringOut Maven / Gradle / Ivy

package com.github.siwenyan.dish_parser;

public class StringOut {
	private StringBuilder theString = new StringBuilder();

	public void reset() {
		this.theString.delete(0, theString.length());
	}

	public void append(String value) {
		this.theString.append(value);
	}

	@Override
	public String toString() {
		return this.theString.toString();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy