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

com.siashan.toolkit.image.enums.OutputFormat Maven / Gradle / Ivy

package com.siashan.toolkit.image.enums;

/**
 * 输出格式
 *
 * @author  siashan
 * @since 1.0.8
 */
public enum OutputFormat {
    /**
     * JPG格式
     */
    JPG("jpg"),
    /**
     * PNG格式
     */
    PNG("png"),
    /**
     * BMP格式
     */
    BMP("bmp");

    public final String name;

    OutputFormat(String name) {
        this.name = name;
    }

    public String getName() {
        return this.name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy