org.asciidoctor.cli.SafeModeConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asciidoctorj-cli Show documentation
Show all versions of asciidoctorj-cli Show documentation
AsciidoctorJ Command Line Interface
package org.asciidoctor.cli;
import com.beust.jcommander.IStringConverter;
import org.asciidoctor.SafeMode;
public class SafeModeConverter implements IStringConverter {
@Override
public SafeMode convert(String argument) {
return SafeMode.valueOf(argument.toUpperCase());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy