com.evernote.auth
Enum EvernoteService

java.lang.Object
  extended by java.lang.Enum<EvernoteService>
      extended by com.evernote.auth.EvernoteService
All Implemented Interfaces:
Serializable, Comparable<EvernoteService>

public enum EvernoteService
extends Enum<EvernoteService>


Enum Constant Summary
PRODUCTION
           
SANDBOX
           
YINXIANG
           
 
Method Summary
 String getAccessTokenEndpoint()
           
 String getAuthorizationUrl(String token)
           
 String getHost()
           
 String getRequestTokenEndpoint()
           
static EvernoteService valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EvernoteService[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PRODUCTION

public static final EvernoteService PRODUCTION

SANDBOX

public static final EvernoteService SANDBOX

YINXIANG

public static final EvernoteService YINXIANG
Method Detail

values

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

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

valueOf

public static EvernoteService 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

getHost

public String getHost()

getRequestTokenEndpoint

public String getRequestTokenEndpoint()

getAccessTokenEndpoint

public String getAccessTokenEndpoint()

getAuthorizationUrl

public String getAuthorizationUrl(String token)


Copyright © 2013. All Rights Reserved.