| Package | Description |
|---|---|
| com.healthmarketscience.jackcess.impl |
| Modifier and Type | Class and Description |
|---|---|
private static class |
GeneralLegacyIndexCodes.InternationalCharHandler
CharHandler for Type.INTERNATIONAL
|
private static class |
GeneralLegacyIndexCodes.InternationalExtCharHandler
CharHandler for Type.INTERNATIONAL_EXT
|
private static class |
GeneralLegacyIndexCodes.SimpleCharHandler
CharHandler for Type.SIMPLE
|
private static class |
GeneralLegacyIndexCodes.UnprintableCharHandler
CharHandler for Type.UNPRINTABLE
|
private static class |
GeneralLegacyIndexCodes.UnprintableExtCharHandler
CharHandler for Type.UNPRINTABLE_EXT
|
| Modifier and Type | Field and Description |
|---|---|
private static GeneralLegacyIndexCodes.CharHandler[] |
GeneralLegacyIndexCodes.Codes._values
handlers for the first 256 chars.
|
private static GeneralLegacyIndexCodes.CharHandler[] |
GeneralLegacyIndexCodes.ExtCodes._values
handlers for the rest of the chars in BMP 0.
|
private static GeneralLegacyIndexCodes.CharHandler[] |
GeneralIndexCodes.Codes._values
handlers for the first 256 chars.
|
private static GeneralLegacyIndexCodes.CharHandler[] |
GeneralIndexCodes.ExtCodes._values
handlers for the rest of the chars in BMP 0.
|
(package private) static GeneralLegacyIndexCodes.CharHandler |
GeneralLegacyIndexCodes.IGNORED_CHAR_HANDLER
shared CharHandler instance for Type.IGNORED
|
(package private) static GeneralLegacyIndexCodes.CharHandler |
GeneralLegacyIndexCodes.SURROGATE_CHAR_HANDLER
alternate shared CharHandler instance for "surrogate" chars (which we do
not handle)
|
| Modifier and Type | Method and Description |
|---|---|
(package private) GeneralLegacyIndexCodes.CharHandler |
GeneralLegacyIndexCodes.getCharHandler(char c)
Returns the CharHandler for the given character.
|
(package private) GeneralLegacyIndexCodes.CharHandler |
GeneralIndexCodes.getCharHandler(char c)
Returns the CharHandler for the given character.
|
(package private) static GeneralLegacyIndexCodes.CharHandler[] |
GeneralLegacyIndexCodes.loadCodes(java.lang.String codesFilePath,
char firstChar,
char lastChar)
Loads the CharHandlers for the given range of characters from the
resource file with the given name.
|
private static GeneralLegacyIndexCodes.CharHandler |
GeneralLegacyIndexCodes.parseCodes(java.util.Map<java.lang.String,GeneralLegacyIndexCodes.Type> prefixMap,
java.lang.String codeLine)
Returns a CharHandler parsed from the given line from an index codes
file.
|
abstract GeneralLegacyIndexCodes.CharHandler |
GeneralLegacyIndexCodes.Type.parseCodes(java.lang.String[] codeStrings) |
private static GeneralLegacyIndexCodes.CharHandler |
GeneralLegacyIndexCodes.parseInternationalCodes(java.lang.String[] codeStrings)
Returns an InternationalCharHandler parsed from the given index code
strings.
|
private static GeneralLegacyIndexCodes.CharHandler |
GeneralLegacyIndexCodes.parseInternationalExtCodes(java.lang.String[] codeStrings)
Returns a InternationalExtCharHandler parsed from the given index code
strings.
|
private static GeneralLegacyIndexCodes.CharHandler |
GeneralLegacyIndexCodes.parseSimpleCodes(java.lang.String[] codeStrings)
Returns a SimpleCharHandler parsed from the given index code strings.
|
private static GeneralLegacyIndexCodes.CharHandler |
GeneralLegacyIndexCodes.parseUnprintableCodes(java.lang.String[] codeStrings)
Returns a UnprintableCharHandler parsed from the given index code
strings.
|
private static GeneralLegacyIndexCodes.CharHandler |
GeneralLegacyIndexCodes.parseUnprintableExtCodes(java.lang.String[] codeStrings)
Returns a UnprintableExtCharHandler parsed from the given index code
strings.
|