public static int getMaxBytes(String charset)
        {
            CharsetEntry entry = _charsetEntryMap.get(charset);

            if (entry != null)
            {
                return(entry.getMaxBytes());
            }
            else
            {
                return(1);
            }
        }