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

com.dua3.utility.text.AnsiConversionOption Maven / Gradle / Ivy

There is a newer version: 15.0.2
Show newest version
package com.dua3.utility.text;

import java.util.function.Consumer;

/**
 * Options controlling the conversion process.
 *
 * @param action the action to execute when applying the option (must not be null)
 */
public record AnsiConversionOption(Consumer action) {

    void apply(AnsiConverter converter) {
        action.accept(converter);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy