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

org.jasmine.cli.OutputFormat Maven / Gradle / Ivy

package org.jasmine.cli;

public enum OutputFormat {
    DOC {
        @Override
        Formatter formatter() {
            return new DocumentationFormatter();
        }
    },

    PROGRESS {
        @Override
        Formatter formatter() {
            return new ProgressFormatter();
        }
    };

    abstract Formatter formatter();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy