当前页面:
在线文档首页 >
NetBeans API Javadoc (Current Development Version)
ResizeProvider.ControlPoint (Visual Library API) - NetBeans API Javadoc (Current Development Version)
org.netbeans.api.visual.action
Enum ResizeProvider.ControlPoint
java.lang.Object
java.lang.Enum<ResizeProvider.ControlPoint>
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.
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
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