JHotDraw 7.1

org.jhotdraw.draw
Enum AttributeKeys.WindingRule

java.lang.Object
  extended by java.lang.Enum<AttributeKeys.WindingRule>
      extended by org.jhotdraw.draw.AttributeKeys.WindingRule
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AttributeKeys.WindingRule>
Enclosing class:
AttributeKeys

public static enum AttributeKeys.WindingRule
extends java.lang.Enum<AttributeKeys.WindingRule>


Enum Constant Summary
EVEN_ODD
          If WINDING_RULE is set to this value, an even-odd winding rule is used for determining the interior of a path.
NON_ZERO
          If WINDING_RULE is set to this value, a non-zero winding rule is used for determining the interior of a path.
 
Method Summary
static AttributeKeys.WindingRule valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AttributeKeys.WindingRule[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EVEN_ODD

public static final AttributeKeys.WindingRule EVEN_ODD
If WINDING_RULE is set to this value, an even-odd winding rule is used for determining the interior of a path.


NON_ZERO

public static final AttributeKeys.WindingRule NON_ZERO
If WINDING_RULE is set to this value, a non-zero winding rule is used for determining the interior of a path.

Method Detail

values

public static final AttributeKeys.WindingRule[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(AttributeKeys.WindingRule c : AttributeKeys.WindingRule.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static AttributeKeys.WindingRule valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

Copyright 1996-2007 (c) JHotDraw.org.
Some rights reserved.