public static enum EscherColorRef.SysIndexProcedure extends java.lang.Enum<EscherColorRef.SysIndexProcedure>
EscherColorRef.SysIndexSource enum or with a user-specified color.
 The first six values are mutually exclusive.| Enum Constant and Description | 
|---|
| ADD_GRAY_LEVELAdd a gray level RGB value. | 
| DARKEN_COLORDarken the color by the value that is specified in the blue field. | 
| INVERT_AFTERAfter making other modifications, invert the color. | 
| INVERT_HIGHBIT_AFTERAfter making other modifications, invert the color by toggling just the high bit of each
 color channel. | 
| LIGHTEN_COLORLighten the color by the value that is specified in the blue field. | 
| REVERSE_GRAY_LEVELReverse-subtract a gray level RGB value. | 
| SUB_GRAY_LEVELSubtract a gray level RGB value. | 
| THRESHOLDIf the color component being modified is less than the parameter contained in the blue
 field, set it to the minimum intensity. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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. | 
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
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 namejava.lang.NullPointerException - if the argument is nullCopyright 2018 The Apache Software Foundation or its licensors, as applicable.