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

org.unix4j.io.StdInput Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
package org.unix4j.io;

/**
 * Input device reading from the {@link System#in standard input} stream.
 */
public class StdInput extends StreamInput {
	
	/**
	 * The singleton instance.
	 */
	public static final StdInput INSTANCE = new StdInput();
	
	/**
	 * Default constructor, application code should use the singleton {@link #INSTANCE}.
	 */
	public StdInput() {
		super(System.in);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy