public enum GlobalIdentityType extends Enum<GlobalIdentityType>
| Enum Constant and Description |
|---|
APPLICATION |
EMAIL |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static GlobalIdentityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GlobalIdentityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalIdentityType APPLICATION
public static final GlobalIdentityType EMAIL
public static GlobalIdentityType[] values()
for (GlobalIdentityType c : GlobalIdentityType.values()) System.out.println(c);
public static GlobalIdentityType 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 getValue()
Copyright © 2016. All rights reserved.