com.dua3.utility.text.AnsiConversionOption Maven / Gradle / Ivy
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 super AnsiConverter> action) {
void apply(AnsiConverter converter) {
action.accept(converter);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy