
Package ca.uhn.fhir.context.phonetic
Enum PhoneticEncoderEnum
- java.lang.Object
-
- java.lang.Enum<PhoneticEncoderEnum>
-
- ca.uhn.fhir.context.phonetic.PhoneticEncoderEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<PhoneticEncoderEnum>
public enum PhoneticEncoderEnum extends Enum<PhoneticEncoderEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CAVERPHONE1
CAVERPHONE2
COLOGNE
DOUBLE_METAPHONE
MATCH_RATING_APPROACH
METAPHONE
NYSIIS
REFINED_SOUNDEX
SOUNDEX
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description IPhoneticEncoder
getPhoneticEncoder()
static PhoneticEncoderEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static PhoneticEncoderEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CAVERPHONE1
public static final PhoneticEncoderEnum CAVERPHONE1
-
CAVERPHONE2
public static final PhoneticEncoderEnum CAVERPHONE2
-
COLOGNE
public static final PhoneticEncoderEnum COLOGNE
-
DOUBLE_METAPHONE
public static final PhoneticEncoderEnum DOUBLE_METAPHONE
-
MATCH_RATING_APPROACH
public static final PhoneticEncoderEnum MATCH_RATING_APPROACH
-
METAPHONE
public static final PhoneticEncoderEnum METAPHONE
-
NYSIIS
public static final PhoneticEncoderEnum NYSIIS
-
REFINED_SOUNDEX
public static final PhoneticEncoderEnum REFINED_SOUNDEX
-
SOUNDEX
public static final PhoneticEncoderEnum SOUNDEX
-
-
Method Detail
-
values
public static PhoneticEncoderEnum[] 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 (PhoneticEncoderEnum c : PhoneticEncoderEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PhoneticEncoderEnum 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
-
getPhoneticEncoder
public IPhoneticEncoder getPhoneticEncoder()
-
-