站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > NetBeans API Javadoc (Current Development Version)

ResizeProvider.ControlPoint (Visual Library API) - NetBeans API Javadoc (Current Development Version)

org.netbeans.api.visual 2.2

org.netbeans.api.visual.action
Enum ResizeProvider.ControlPoint

java.lang.Object
  extended by java.lang.Enum<ResizeProvider.ControlPoint>
      extended by org.netbeans.api.visual.action.ResizeProvider.ControlPoint
All Implemented Interfaces:
Serializable, Comparable<ResizeProvider.ControlPoint>
Enclosing interface:
ResizeProvider

public static enum ResizeProvider.ControlPoint
extends Enum<ResizeProvider.ControlPoint>

This enum represents a control point of a resize action.


Enum Constant Summary
BOTTOM_CENTER
           
BOTTOM_LEFT
           
BOTTOM_RIGHT
           
CENTER_LEFT
           
CENTER_RIGHT
           
TOP_CENTER
           
TOP_LEFT
           
TOP_RIGHT
           
 
Method Summary
static ResizeProvider.ControlPoint valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ResizeProvider.ControlPoint[] 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

TOP_CENTER

public static final ResizeProvider.ControlPoint TOP_CENTER

BOTTOM_CENTER

public static final ResizeProvider.ControlPoint BOTTOM_CENTER

CENTER_LEFT

public static final ResizeProvider.ControlPoint CENTER_LEFT

CENTER_RIGHT

public static final ResizeProvider.ControlPoint CENTER_RIGHT

TOP_LEFT

public static final ResizeProvider.ControlPoint TOP_LEFT

TOP_RIGHT

public static final ResizeProvider.ControlPoint TOP_RIGHT

BOTTOM_LEFT

public static final ResizeProvider.ControlPoint BOTTOM_LEFT

BOTTOM_RIGHT

public static final ResizeProvider.ControlPoint BOTTOM_RIGHT
Method Detail

values

public static final ResizeProvider.ControlPoint[] 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(ResizeProvider.ControlPoint c : ResizeProvider.ControlPoint.values())
        System.out.println(c);

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

valueOf

public static ResizeProvider.ControlPoint valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name

org.netbeans.api.visual 2.2

Built on May 28 2007.  |  Portions Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.