Enum Class DestinationType
- All Implemented Interfaces:
Serializable
,Comparable<DestinationType>
,Constable
Enum representing the types a destination can be of.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic DestinationType
ofIdentifier
(String identifier) Returns theDestinationType
which equals the given identifier.static DestinationType
ofIdentifierOrDefault
(String identifier, DestinationType defaultDestinationType) Returns theDestinationType
which equals the given identifier, or the defaultDestinationType in case there is none.toString()
static DestinationType
Returns the enum constant of this class with the specified name.static DestinationType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
HTTP
HTTP -
RFC
RFC -
MAIL
MAIL -
LDAP
LDAP
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<DestinationType>
-
ofIdentifier
@Nonnull public static DestinationType ofIdentifier(@Nonnull String identifier) throws IllegalArgumentException Returns theDestinationType
which equals the given identifier.- Parameters:
identifier
- The identifier to get aDestinationType
for.- Returns:
- The matching
DestinationType
. - Throws:
IllegalArgumentException
- If the given identifier does not map to aDestinationType
.
-
ofIdentifierOrDefault
@Nonnull public static DestinationType ofIdentifierOrDefault(@Nullable String identifier, @Nonnull DestinationType defaultDestinationType) Returns theDestinationType
which equals the given identifier, or the defaultDestinationType in case there is none.- Parameters:
identifier
- The identifier to get aDestinationType
for.defaultDestinationType
- TheDestinationType
to return if no matchingDestinationType
could be found.- Returns:
- The matching
DestinationType
or the default, if none is matching.
-
getIdentifier
-