/**@class android.graphics.Paint.Style
@extends java.lang.Enum

 The Style specifies if the primitive being drawn is filled, stroked, or
 both (in the same color). The default is FILL.
*/
var Style = {

/** Geometry and text drawn with this style will be filled, ignoring all
 stroke-related settings in the paint.
*/
FILL : "null",
/** Geometry and text drawn with this style will be stroked, respecting
 the stroke-related fields on the paint.
*/
STROKE : "null",
/** Geometry and text drawn with this style will be both filled and
 stroked at the same time, respecting the stroke-related fields on
 the paint. This mode can give unexpected results if the geometry
 is oriented counter-clockwise. This restriction does not apply to
 either FILL or STROKE.
*/
FILL_AND_STROKE : "null",
/**
*/
values : function(  ) {},

/**
*/
valueOf : function(  ) {},


};