SoftReferenceSymbolTableConfigurationpublic class SoftReferenceSymbolTableConfiguration extends XIncludeAwareParserConfiguration This parser configuration extends the default configuration allowing Xerces to
handle usage scenarios where the names in the XML documents being parsed are mostly
unique by installing a memory sensitive SymbolTable . The internalized
strings stored in this SymbolTable are softly reachable and may be
cleared by the garbage collector in response to memory demand. |
Constructors Summary |
---|
public SoftReferenceSymbolTableConfiguration()Default constructor.
this(new SoftReferenceSymbolTable(), null, null);
| public SoftReferenceSymbolTableConfiguration(org.apache.xerces.util.SymbolTable symbolTable)Constructs a parser configuration using the specified symbol table.
this(symbolTable, null, null);
| public SoftReferenceSymbolTableConfiguration(org.apache.xerces.util.SymbolTable symbolTable, org.apache.xerces.xni.grammars.XMLGrammarPool grammarPool)Constructs a parser configuration using the specified symbol table and
grammar pool.
this(symbolTable, grammarPool, null);
| public SoftReferenceSymbolTableConfiguration(org.apache.xerces.util.SymbolTable symbolTable, org.apache.xerces.xni.grammars.XMLGrammarPool grammarPool, org.apache.xerces.xni.parser.XMLComponentManager parentSettings)Constructs a parser configuration using the specified symbol table,
grammar pool, and parent settings.
super(symbolTable, grammarPool, parentSettings);
|
|