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

com.github.thorbenkuck.keller.nio.files.Line Maven / Gradle / Ivy

package com.github.thorbenkuck.keller.nio.files;

import com.github.thorbenkuck.keller.datatypes.interfaces.PrettyPrint;

public interface Line extends PrettyPrint {

	static Line create(int number, String content) {
		return new NativeLine(number, content);
	}

	int getLineNumber();

	String getContent();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy