public static enum SnapshotView.Boundary extends java.lang.Enum<SnapshotView.Boundary>
selectionArea, in which the user can create a selection,
and the unselectedArea, in which the unselected area is
visualized, are limited to a certain area of the control. This area's boundary is represented by this enum.| Enum Constant and Description |
|---|
CONTROL
The boundary is this control's bound.
|
NODE
The boundary is the displayed node's bound.
|
| Modifier and Type | Method and Description |
|---|---|
static SnapshotView.Boundary |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SnapshotView.Boundary[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SnapshotView.Boundary CONTROL
public static final SnapshotView.Boundary NODE
public static SnapshotView.Boundary[] values()
for (SnapshotView.Boundary c : SnapshotView.Boundary.values()) System.out.println(c);
public static SnapshotView.Boundary valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null