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

com.princexml.wrapper.enums.RasterFormat Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2021 YesLogic Pty. Ltd.
 * All rights reserved.
 */

package com.princexml.wrapper.enums;

/**
 * Raster formats.
 */
public enum RasterFormat {
    /** Equates to the string {@code "auto"}. */
    AUTO("auto"),
    /** Equates to the string {@code "png"}. */
    PNG("png"),
    /** Equates to the string {@code "jpeg"}. */
    JPEG("jpeg");

    private final String rasterFormat;

    RasterFormat(String rasterFormat) {
        this.rasterFormat = rasterFormat;
    }

    @Override
    public String toString() {
        return this.rasterFormat;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy