public enum BlendingColorSpace extends Enum<BlendingColorSpace>
Class represents blending color space.
Enum Constant and Description |
---|
Auto
The blending color space is determined automatically.
|
DeviceCMYK
Blending color space is set to DeviceCMYK.
|
DeviceRGB
Blending color space is set to DeviceRGB.
|
DontChange
The blending color space is not changed.
|
Modifier and Type | Method and Description |
---|---|
static BlendingColorSpace |
getByValue(int value) |
int |
getValue() |
static BlendingColorSpace |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlendingColorSpace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlendingColorSpace DontChange
The blending color space is not changed.
public static final BlendingColorSpace Auto
The blending color space is determined automatically.
public static final BlendingColorSpace DeviceRGB
Blending color space is set to DeviceRGB.
public static final BlendingColorSpace DeviceCMYK
Blending color space is set to DeviceCMYK.
public static BlendingColorSpace[] values()
for (BlendingColorSpace c : BlendingColorSpace.values()) System.out.println(c);
public static BlendingColorSpace valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
public static BlendingColorSpace getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.