com.nimbusds.openid.connect.sdk.rp
Enum ApplicationType

java.lang.Object
  extended by java.lang.Enum<ApplicationType>
      extended by com.nimbusds.openid.connect.sdk.rp.ApplicationType
All Implemented Interfaces:
Serializable, Comparable<ApplicationType>

public enum ApplicationType
extends Enum<ApplicationType>

Enumeration of OpenID Connect client application types.

Author:
Vladimir Dzhuvinov

Enum Constant Summary
NATIVE
          Native application.
WEB
          Web application.
 
Method Summary
static ApplicationType getDefault()
          Gets the default application type.
 String toString()
          Returns the string identifier of this application type.
static ApplicationType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ApplicationType[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NATIVE

public static final ApplicationType NATIVE
Native application.


WEB

public static final ApplicationType WEB
Web application.

Method Detail

values

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

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

valueOf

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

getDefault

public static ApplicationType getDefault()
Gets the default application type.

Returns:
WEB

toString

public String toString()
Returns the string identifier of this application type.

Overrides:
toString in class Enum<ApplicationType>
Returns:
The string identifier.


Copyright © 2013 NimbusDS. All Rights Reserved.