Skip to content

Commit 8bb1151

Browse files
committed
Doc tweak
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1789720 13f79535-47bb-0310-9956-ffa450edef68
1 parent 8d55e2c commit 8bb1151

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

src/main/java/org/apache/commons/codec/language/RefinedSoundex.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,22 @@
3232
public class RefinedSoundex implements StringEncoder {
3333

3434
/**
35+
* Mapping:
36+
* <pre>
37+
* 0: A E I O U Y H W
38+
* 1: B P
39+
* 2: F V
40+
* 3: C K S
41+
* 4: G J
42+
* 5: Q X Z
43+
* 6: D T
44+
* 7: L
45+
* 8: M N
46+
* 9: R
47+
* </pre>
3548
* @since 1.4
3649
*/
50+
// ABCDEFGHIJKLMNOPQRSTUVWXYZ
3751
public static final String US_ENGLISH_MAPPING_STRING = "01360240043788015936020505";
3852

3953
/**

0 commit comments

Comments
 (0)