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

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

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

package com.princexml.wrapper.enums;

/**
 * Raster backgrounds.
 */
public enum RasterBackground {
    /** Equates to the string {@code "white"}. */
    WHITE("white"),
    /** Equates to the string {@code "transparent"}. */
    TRANSPARENT("transparent");

    private final String rasterBackground;

    RasterBackground(String rasterBackground) {
        this.rasterBackground = rasterBackground;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy