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

org.asciidoctor.cli.SafeModeConverter Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
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