|
Oracle Fusion Middleware Java API Reference for Oracle ADF Faces 11g Release 1 (11.1.1) E10684-04 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Object
java.lang.Enum<DropEvent.DropOrientation>
oracle.adf.view.rich.event.DropEvent.DropOrientation
public static enum DropEvent.DropOrientation
Possible orientations that the drop might occur relative to the dropSite in the dropComponent.
DropEvent.getDropComponent(), DropEvent.getDropSite()| Enum Constant Summary | |
|---|---|
AFTERThe Drop is after the dropSite. |
|
BEFOREThe Drop is before the dropSite. |
|
INSIDEThe Drop is inside the dropSite. |
|
ONThe Drop is on the dropComponent. |
|
| Method Summary | |
|---|---|
static DropEvent.DropOrientation |
valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. |
static DropEvent.DropOrientation[] |
values()Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final DropEvent.DropOrientation ON
dropComponent. This value is often returned for drop targets that don't have internal dropSites.public static final DropEvent.DropOrientation INSIDE
dropSite. The dragged contents should be inserted inside of the dropSite (typically appended). The drop target should only return this value if the drop site can act as a container for at least one of the flavors in the drag.public static final DropEvent.DropOrientation BEFORE
dropSite. The dragged contents should be inserted before the location identified by the dropSite.public static final DropEvent.DropOrientation AFTER
dropSite. The dragged contents should be inserted after the location identified by the dropSite.| Method Detail |
|---|
public static DropEvent.DropOrientation[] values()
for (DropEvent.DropOrientation c : DropEvent.DropOrientation.values())
System.out.println(c);
public static DropEvent.DropOrientation 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
|
Oracle Fusion Middleware Java API Reference for Oracle ADF Faces 11g Release 1 (11.1.1) E10684-04 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||