/**@class android.graphics.ColorSpace.Model @extends java.lang.Enum A color model is required by a {@link android.graphics.ColorSpace} to describe the way colors can be represented as tuples of numbers. A common color model is the {@link #RGB RGB} color model which defines a color as represented by a tuple of 3 numbers (red, green and blue). */ var Model = { /** The RGB model is a color model with 3 components that refer to the three additive primiaries: red, green andd blue. */ RGB : "null", /** The XYZ model is a color model with 3 components that are used to model human color vision on a basic sensory level. */ XYZ : "null", /** The Lab model is a color model with 3 components used to describe a color space that is more perceptually uniform than XYZ. */ LAB : "null", /** The CMYK model is a color model with 4 components that refer to four inks used in color printing: cyan, magenta, yellow and black (or key). CMYK is a subtractive color model. */ CMYK : "null", /** */ values : function( ) {}, /** */ valueOf : function( ) {}, /**Returns the number of components for this color model. @return {Number} An integer between 1 and 4 */ getComponentCount : function( ) {}, };