Enum PhoneticEncoder
- All Implemented Interfaces:
Serializable
,Comparable<PhoneticEncoder>
,java.lang.constant.Constable
Defines values for PhoneticEncoder.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEnum value beiderMorse.Enum value caverphone1.Enum value caverphone2.Enum value cologne.Enum value doubleMetaphone.Enum value haasePhonetik.Enum value koelnerPhonetik.Enum value metaphone.Enum value nysiis.Enum value refinedSoundex.Enum value soundex. -
Method Summary
Modifier and TypeMethodDescriptionstatic PhoneticEncoder
fromString
(String value) Parses a serialized value to a PhoneticEncoder instance.toString()
static PhoneticEncoder
Returns the enum constant of this type with the specified name.static PhoneticEncoder[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
METAPHONE
Enum value metaphone. -
DOUBLE_METAPHONE
Enum value doubleMetaphone. -
SOUNDEX
Enum value soundex. -
REFINED_SOUNDEX
Enum value refinedSoundex. -
CAVERPHONE1
Enum value caverphone1. -
CAVERPHONE2
Enum value caverphone2. -
COLOGNE
Enum value cologne. -
NYSIIS
Enum value nysiis. -
KOELNER_PHONETIK
Enum value koelnerPhonetik. -
HAASE_PHONETIK
Enum value haasePhonetik. -
BEIDER_MORSE
Enum value beiderMorse.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
fromString
Parses a serialized value to a PhoneticEncoder instance.- Parameters:
value
- the serialized value to parse.- Returns:
- the parsed PhoneticEncoder object, or null if unable to parse.
-
toString
- Overrides:
toString
in classEnum<PhoneticEncoder>
-