/**@class android.graphics.fonts.FontStyle @extends java.lang.Object A font style object. This class represents a single font style which is a pair of weight value and slant value. Here are common font styles examples: <p> <pre> <code> final FontStyle NORMAL = new FontStyle(FONT_WEIGHT_NORMAL, FONT_SLANT_UPRIGHT); final FontStyle BOLD = new FontStyle(FONT_WEIGHT_BOLD, FONT_SLANT_UPRIGHT); final FontStyle ITALIC = new FontStyle(FONT_WEIGHT_NORMAL, FONT_SLANT_ITALIC); final FontStyle BOLD_ITALIC = new FontStyle(FONT_WEIGHT_BOLD, FONT_SLANT_ITALIC); </code> </pre> </p> */ var FontStyle = { /** A minimum weight value for the font */ FONT_WEIGHT_MIN : "1", /** A font weight value for the thin weight */ FONT_WEIGHT_THIN : "100", /** A font weight value for the extra-light weight */ FONT_WEIGHT_EXTRA_LIGHT : "200", /** A font weight value for the light weight */ FONT_WEIGHT_LIGHT : "300", /** A font weight value for the normal weight */ FONT_WEIGHT_NORMAL : "400", /** A font weight value for the medium weight */ FONT_WEIGHT_MEDIUM : "500", /** A font weight value for the semi-bold weight */ FONT_WEIGHT_SEMI_BOLD : "600", /** A font weight value for the bold weight. */ FONT_WEIGHT_BOLD : "700", /** A font weight value for the extra-bold weight */ FONT_WEIGHT_EXTRA_BOLD : "800", /** A font weight value for the black weight */ FONT_WEIGHT_BLACK : "900", /** A maximum weight value for the font */ FONT_WEIGHT_MAX : "1000", /** A font slant value for upright */ FONT_SLANT_UPRIGHT : "0", /** A font slant value for italic */ FONT_SLANT_ITALIC : "1", /**Gets the weight value @see FontStyle#setWeight(int) @return {Number} a weight value */ getWeight : function( ) {}, /**Gets the slant value @return {Number} a slant value */ getSlant : function( ) {}, /**Compute the matching score for another style. The smaller is better. @hide */ getMatchScore : function( ) {}, /** */ equals : function( ) {}, /** */ hashCode : function( ) {}, /** */ toString : function( ) {}, };