Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle WebCenter
11g Release 1 (11.1.1.3.0)
E15995-02


oracle.adf.view.page.editor.event
Enum Event

java.lang.Object
  extended by java.lang.Enum<Event>
      extended by oracle.adf.view.page.editor.event.Event

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Event>

public enum Event
extends java.lang.Enum<Event>

Enumeration of UI events currently supported by Oracle Composer.

Since:
11.1.1.0.1BETA

Enum Constant Summary
CLOSE_EVENT
           
COMP_ADD_EVENT
           
COMP_DELETE_EVENT
           
COMP_POSTADD_EVENT
           
COMP_SELECTION_EVENT
           
COMP_WIRE_EVENT
           
DIALOG_EVENT
           
NAVIGATION_EVENT
           
RESEQUENCE_EVENT
           
RESET_EVENT
           
SAVE_EVENT
           

 

Method Summary
static Event getEvent(java.lang.String name)
          Returns an Event object given a name.
 java.lang.String getName()
          Returns the name of the event.
static Event valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Event[] 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

SAVE_EVENT

public static final Event SAVE_EVENT

CLOSE_EVENT

public static final Event CLOSE_EVENT

COMP_DELETE_EVENT

public static final Event COMP_DELETE_EVENT

COMP_ADD_EVENT

public static final Event COMP_ADD_EVENT

COMP_POSTADD_EVENT

public static final Event COMP_POSTADD_EVENT

COMP_WIRE_EVENT

public static final Event COMP_WIRE_EVENT

COMP_SELECTION_EVENT

public static final Event COMP_SELECTION_EVENT

DIALOG_EVENT

public static final Event DIALOG_EVENT

NAVIGATION_EVENT

public static final Event NAVIGATION_EVENT

RESET_EVENT

public static final Event RESET_EVENT

RESEQUENCE_EVENT

public static final Event RESEQUENCE_EVENT

Method Detail

values

public static Event[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Event c : Event.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Event 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
java.lang.NullPointerException - if the argument is null

getName

public java.lang.String getName()
Returns the name of the event.
Returns:
Name of the event.

getEvent

public static Event getEvent(java.lang.String name)
                      throws java.lang.IllegalArgumentException
Returns an Event object given a name.
Parameters:
name - Name of the event whose Event object is to be retrieved.
Returns:
Event object corresponding to the given name of the event.
Throws:
java.lang.IllegalArgumentException - If the name is not a valid type of event

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle WebCenter
11g Release 1 (11.1.1.3.0)
E15995-02


Copyright © 2009, 2010, Oracle. All rights reserved.