public enum IdentityType extends Enum<IdentityType>
| Modifier and Type | Method and Description |
|---|---|
String |
getProviderId() |
static IdentityType |
getType(String type) |
boolean |
isSpace() |
boolean |
isUser() |
static IdentityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IdentityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdentityType USER
public static final IdentityType SPACE
public static IdentityType[] values()
for (IdentityType c : IdentityType.values()) System.out.println(c);
public static IdentityType 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 static IdentityType getType(String type)
public String getProviderId()
public boolean isUser()
public boolean isSpace()
Copyright © 2003–2020 eXo Platform SAS. All rights reserved.