|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<EscherColorRef.SysIndexProcedure> org.apache.poi.ddf.EscherColorRef.SysIndexProcedure
public static enum EscherColorRef.SysIndexProcedure
The following enum specifies values that indicate special procedural properties that
are used to modify the color components of another color. These values are combined with
those of the EscherColorRef.SysIndexSource
enum or with a user-specified color.
The first six values are mutually exclusive.
Enum Constant Summary | |
---|---|
ADD_GRAY_LEVEL
Add a gray level RGB value. |
|
DARKEN_COLOR
Darken the color by the value that is specified in the blue field. |
|
INVERT_AFTER
After making other modifications, invert the color. |
|
INVERT_HIGHBIT_AFTER
After making other modifications, invert the color by toggling just the high bit of each color channel. |
|
LIGHTEN_COLOR
Lighten the color by the value that is specified in the blue field. |
|
REVERSE_GRAY_LEVEL
Reverse-subtract a gray level RGB value. |
|
SUB_GRAY_LEVEL
Subtract a gray level RGB value. |
|
THRESHOLD
If the color component being modified is less than the parameter contained in the blue field, set it to the minimum intensity. |
Method Summary | |
---|---|
static EscherColorRef.SysIndexProcedure |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EscherColorRef.SysIndexProcedure[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final EscherColorRef.SysIndexProcedure DARKEN_COLOR
public static final EscherColorRef.SysIndexProcedure LIGHTEN_COLOR
public static final EscherColorRef.SysIndexProcedure ADD_GRAY_LEVEL
public static final EscherColorRef.SysIndexProcedure SUB_GRAY_LEVEL
public static final EscherColorRef.SysIndexProcedure REVERSE_GRAY_LEVEL
public static final EscherColorRef.SysIndexProcedure THRESHOLD
public static final EscherColorRef.SysIndexProcedure INVERT_AFTER
public static final EscherColorRef.SysIndexProcedure INVERT_HIGHBIT_AFTER
Method Detail |
---|
public static EscherColorRef.SysIndexProcedure[] values()
for (EscherColorRef.SysIndexProcedure c : EscherColorRef.SysIndexProcedure.values()) System.out.println(c);
public static EscherColorRef.SysIndexProcedure valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |