JHotDraw 7.1

org.jhotdraw.draw
Enum AttributeKeys.StrokePlacement

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

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


Enum Constant Summary
CENTER
          If STROKE_PLACEMENT is set to this value, the stroke is centered on the path.
INSIDE
          If STROKE_PLACEMENT is set to this value, the stroke is placed inside of a closed path.
OUTSIDE
          If STROKE_PLACEMENT is set to this value, the stroke is placed outside of a closed path.
 
Method Summary
static AttributeKeys.StrokePlacement valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AttributeKeys.StrokePlacement[] 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

CENTER

public static final AttributeKeys.StrokePlacement CENTER
If STROKE_PLACEMENT is set to this value, the stroke is centered on the path.


INSIDE

public static final AttributeKeys.StrokePlacement INSIDE
If STROKE_PLACEMENT is set to this value, the stroke is placed inside of a closed path.


OUTSIDE

public static final AttributeKeys.StrokePlacement OUTSIDE
If STROKE_PLACEMENT is set to this value, the stroke is placed outside of a closed path.

Method Detail

values

public static final AttributeKeys.StrokePlacement[] 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.StrokePlacement c : AttributeKeys.StrokePlacement.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.StrokePlacement 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.