public static enum Client.ApplicationType extends Enum<Client.ApplicationType>
Enum Constant and Description |
---|
NATIVE
Native Application Type.
|
WEB
Web Application Type.
|
Modifier and Type | Method and Description |
---|---|
static Client.ApplicationType |
fromString(String type)
Translates a string into an application type.
|
String |
getType()
Gets the client application type.
|
static Client.ApplicationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Client.ApplicationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Client.ApplicationType WEB
public static final Client.ApplicationType NATIVE
public static Client.ApplicationType[] values()
for (Client.ApplicationType c : Client.ApplicationType.values()) System.out.println(c);
public static Client.ApplicationType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getType()
public static Client.ApplicationType fromString(String type)
type
- The string to translate into a application type.null
.Copyright © 2010–2025 Open Identity Platform Community. All rights reserved.