de.fhhannover.inform.trust.ifmapj.identifier
Enum IdentityType
java.lang.Object
java.lang.Enum<IdentityType>
de.fhhannover.inform.trust.ifmapj.identifier.IdentityType
- All Implemented Interfaces:
- Serializable, Comparable<IdentityType>
public enum IdentityType
- extends Enum<IdentityType>
This enum encapsulates all possible identity types as specified by IF-MAP.
- Author:
- aw
Method Summary |
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. |
aikName
public static final IdentityType aikName
distinguishedName
public static final IdentityType distinguishedName
dnsName
public static final IdentityType dnsName
emailAddress
public static final IdentityType emailAddress
hipHit
public static final IdentityType hipHit
kerberosPrincipal
public static final IdentityType kerberosPrincipal
userName
public static final IdentityType userName
sipUri
public static final IdentityType sipUri
telUri
public static final IdentityType telUri
other
public static final IdentityType other
values
public static IdentityType[] 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 (IdentityType c : IdentityType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static IdentityType 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
Copyright © 2012 Trust@FHH. All Rights Reserved.