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.context
Enum AdfFacesContext.PayloadType

java.lang.Object
  extended by java.lang.Enum<AdfFacesContext.PayloadType>
      extended by oracle.adf.view.rich.context.AdfFacesContext.PayloadType

All Implemented Interfaces:
Serializable, Comparable<AdfFacesContext.PayloadType>
Enclosing class:
AdfFacesContext

public static enum AdfFacesContext.PayloadType
extends Enum<AdfFacesContext.PayloadType>

Enumeration of the types of postback payloads supported by ADF.


Enum Constant Summary
DIRTY
          Indicates that the postback payload has been filtered such that values corresponding to unmodified input components may be omitted from the payload.
FULL
          Indicates that the postback payload contains the full, unfiltered set of postback data.

 

Method Summary
 String displayName()
          Returns the PayloadType constant's displayName.
static AdfFacesContext.PayloadType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AdfFacesContext.PayloadType valueOfDisplayName(String displayName)
          Returns the PaylaodType constant associated with the specified displayName.
static AdfFacesContext.PayloadType[] 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

FULL

public static final AdfFacesContext.PayloadType FULL
Indicates that the postback payload contains the full, unfiltered set of postback data.

DIRTY

public static final AdfFacesContext.PayloadType DIRTY
Indicates that the postback payload has been filtered such that values corresponding to unmodified input components may be omitted from the payload.

Method Detail

values

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

valueOf

public static AdfFacesContext.PayloadType 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

displayName

public String displayName()
Returns the PayloadType constant's displayName.

valueOfDisplayName

public static AdfFacesContext.PayloadType valueOfDisplayName(String displayName)
Returns the PaylaodType constant associated with the specified displayName.
Parameters:
displayName - the displayName to look up
Throws:
IllegalArgumentException - if the displayName does not correspond to an PayloadType constant.

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.