![JAR search and dependency download from the Maven repository](/logo.png)
org.qas.api.internal.util.StringInputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtest-sdk-java Show documentation
Show all versions of qtest-sdk-java Show documentation
A java SDK client wrap qTest REST API
The newest version!
package org.qas.api.internal.util;
import org.qas.api.internal.util.google.base.Charsets;
import java.io.ByteArrayInputStream;
/**
* StringInputStream
*
* @author Dzung Nguyen
* @version $Id StringInputStream 2014-03-27 15:08:30z dungvnguyen $
* @since 1.0
*/
public class StringInputStream extends ByteArrayInputStream {
//~ class properties ========================================================
private final String string;
//~ clas members ============================================================
public StringInputStream(String string) {
super(string.getBytes(Charsets.UTF_8));
this.string = string;
}
public String getString() {
return string;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy