org.apache.shindig.gadgets.oauth
Enum AccessorInfo.OAuthParamLocation

java.lang.Object
  extended by java.lang.Enum<AccessorInfo.OAuthParamLocation>
      extended by org.apache.shindig.gadgets.oauth.AccessorInfo.OAuthParamLocation
All Implemented Interfaces:
Serializable, Comparable<AccessorInfo.OAuthParamLocation>
Enclosing class:
AccessorInfo

public static enum AccessorInfo.OAuthParamLocation
extends Enum<AccessorInfo.OAuthParamLocation>


Enum Constant Summary
AUTH_HEADER
           
POST_BODY
           
URI_QUERY
           
 
Method Summary
static AccessorInfo.OAuthParamLocation valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AccessorInfo.OAuthParamLocation[] 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

AUTH_HEADER

public static final AccessorInfo.OAuthParamLocation AUTH_HEADER

POST_BODY

public static final AccessorInfo.OAuthParamLocation POST_BODY

URI_QUERY

public static final AccessorInfo.OAuthParamLocation URI_QUERY
Method Detail

values

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

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

valueOf

public static AccessorInfo.OAuthParamLocation 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


Copyright © 2007-2012. All Rights Reserved.