
com.inamik.text.tables.line.base.Function Maven / Gradle / Ivy
The newest version!
/*
* iNamik Text Tables for Java
*
* Copyright (C) 2016 David Farrell ([email protected])
*
* Licensed under The MIT License (MIT), see LICENSE.txt
*/
package com.inamik.text.tables.line.base;
public abstract class Function
{
public abstract String apply(String line);
public static final Function IDENTITY = new Function() {
@Override
public String apply(String line) {
return line;
}
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy