Android
android.graphics
public static final enum

android.graphics.Paint.Style

java.lang.Object
java.lang.Enum<E extends java.lang.Enum<E>> Serializable Comparable<T>
android.graphics.Paint.Style

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

Summary

Enum Values

Paint.Style  FILL  Geometry and text drawn with this style will be filled, ignoring all stroke-related settings in the paint. 
Paint.Style  FILL_AND_STROKE  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. 
Paint.Style  STROKE  Geometry and text drawn with this style will be stroked, respecting the stroke-related fields on the paint. 

Public Methods

      static    Paint.Style  valueOf(String name)
    final  static    Style[]  values()
Methods inherited from class java.lang.Enum
Methods inherited from class java.lang.Object
Methods inherited from interface java.lang.Comparable

Details

Enum Values

public static final Paint.Style FILL

Geometry and text drawn with this style will be filled, ignoring all stroke-related settings in the paint.

public static final Paint.Style FILL_AND_STROKE

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.

public static final Paint.Style STROKE

Geometry and text drawn with this style will be stroked, respecting the stroke-related fields on the paint.

Public Methods

public static Paint.Style valueOf(String name)

public static final Style[] values()

Copyright 2007 Google Inc. Build 0.9_r1-98467 - 14 Aug 2008 18:48