Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle ADF Faces
12c Release 1 (12.1.2.0.0)
E23185-01


oracle.adf.view.rich.browserext
Enum RequestHandler.RequestType

java.lang.Object
  extended by java.lang.Enum<RequestHandler.RequestType>
      extended by oracle.adf.view.rich.browserext.RequestHandler.RequestType

All Implemented Interfaces:
Serializable, Comparable<RequestHandler.RequestType>
Enclosing class:
RequestHandler

public static enum RequestHandler.RequestType
extends Enum<RequestHandler.RequestType>

Types of requests that may be made to the server from the browser


Enum Constant Summary
DIRECT
          Direct request from the browser to the server using an XMLHttpRequest
PAGE
          Request made using a client event to the current view.

 

Method Summary
static RequestHandler.RequestType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RequestHandler.RequestType[] 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

PAGE

public static final RequestHandler.RequestType PAGE
Request made using a client event to the current view.

Allows the request handler to access information tied to the view.


DIRECT

public static final RequestHandler.RequestType DIRECT
Direct request from the browser to the server using an XMLHttpRequest

Method Detail

values

public static RequestHandler.RequestType[] 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 (RequestHandler.RequestType c : RequestHandler.RequestType.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RequestHandler.RequestType 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
NullPointerException - if the argument is null

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle ADF Faces
12c Release 1 (12.1.2.0.0)
E23185-01


Copyright © 2013 Oracle Corporation. All Rights Reserved.