public enum PublicClientType extends java.lang.Enum<PublicClientType>
| Enum Constant and Description |
|---|
MAC |
OUTLOOK_ADD_IN |
WINDOWS |
| Modifier and Type | Method and Description |
|---|---|
static PublicClientType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PublicClientType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PublicClientType WINDOWS
public static final PublicClientType MAC
public static final PublicClientType OUTLOOK_ADD_IN
public static PublicClientType[] values()
for (PublicClientType c : PublicClientType.values()) System.out.println(c);
public static PublicClientType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null