summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/basic/SVGRenderingIntent.java
blob: 9d54fa4e44e2ea611c6f506a0057868ee874faeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 * SVGRenderingIntent.java
 *
 * Created on April 12, 2007, 3:29 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.svg.basic;

/**
 *
 * The SVGRenderingIntent  interface defines the enumerated list of possible values for 'rendering-intent' attributes or descriptors.
 * @author kitfox
 */
public interface SVGRenderingIntent
{
    public static enum Intent
    {
        /**
         *  	The type is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type.
         */
        UNKNOWN,
        /**
         * Corresponds to a value of auto.
         */
        AUTO,
        /**
         * Corresponds to a value of perceptual.
         */
        PERCEPTUAL,
        /**
         * Corresponds to a value of relative-colorimetric.
         */
        RELATIVE_COLORIMETRIC,
        /**
         * Corresponds to a value of saturation.
         */
        SATURATION,
        /**
         * Corresponds to a value of absolute-colorimetric.
         */
        ABSOLUTE_COLORIMETRIC
    }
}