Package com.javahollic.jira.emh.api
Enum LdapDetailsDTO.FULL_NAME_FORMAT
- java.lang.Object
-
- java.lang.Enum<LdapDetailsDTO.FULL_NAME_FORMAT>
-
- com.javahollic.jira.emh.api.LdapDetailsDTO.FULL_NAME_FORMAT
-
- All Implemented Interfaces:
Serializable
,Comparable<LdapDetailsDTO.FULL_NAME_FORMAT>
- Enclosing class:
- LdapDetailsDTO
public static enum LdapDetailsDTO.FULL_NAME_FORMAT extends Enum<LdapDetailsDTO.FULL_NAME_FORMAT>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description firstNameSpaceLastName
surnameCommaLastName
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LdapDetailsDTO.FULL_NAME_FORMAT
valueOf(String name)
Returns the enum constant of this type with the specified name.static LdapDetailsDTO.FULL_NAME_FORMAT[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
surnameCommaLastName
public static final LdapDetailsDTO.FULL_NAME_FORMAT surnameCommaLastName
-
firstNameSpaceLastName
public static final LdapDetailsDTO.FULL_NAME_FORMAT firstNameSpaceLastName
-
-
Method Detail
-
values
public static LdapDetailsDTO.FULL_NAME_FORMAT[] 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 (LdapDetailsDTO.FULL_NAME_FORMAT c : LdapDetailsDTO.FULL_NAME_FORMAT.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LdapDetailsDTO.FULL_NAME_FORMAT 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 nameNullPointerException
- if the argument is null
-
-