Oracle Fusion Middleware Design Time Java API Reference for Oracle ADF Faces and Data Visualization Components
11g Release 2 (11.1.2.1.0)

E18581-02

oracle.adfdt.view.common.binding.creator.v2
Enum BinderResult.Result

java.lang.Object
  extended by java.lang.Enum<BinderResult.Result>
      extended by oracle.adfdt.view.common.binding.creator.v2.BinderResult.Result
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BinderResult.Result>
Enclosing class:
BinderResult

public static enum BinderResult.Result
extends java.lang.Enum<BinderResult.Result>

OK: bind operation succeeded NO_BINDER: bind operation did not occur since no Binder was present FAILED: bind operation ran into an error (check console error logs)


Enum Constant Summary
FAILED
           
NO_BINDER
           
OK
           
 
Method Summary
static BinderResult.Result valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BinderResult.Result[] 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

OK

public static final BinderResult.Result OK

NO_BINDER

public static final BinderResult.Result NO_BINDER

FAILED

public static final BinderResult.Result FAILED
Method Detail

values

public static BinderResult.Result[] 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 (BinderResult.Result c : BinderResult.Result.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static BinderResult.Result 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

Oracle Fusion Middleware Design Time Java API Reference for Oracle ADF Faces and Data Visualization Components
11g Release 2 (11.1.2.1.0)

E18581-02

Copyright © 1997, 2011, Oracle. All rights reserved.