Package | Description |
---|---|
com.ctc.wstx.dtd |
Package that contains Woodstox classes that implement DTD handling.
|
Modifier and Type | Class and Description |
---|---|
class |
ChoiceModel
Model class that encapsulates set of sub-models, of which one (and only
one) needs to be matched.
|
class |
ConcatModel
Model class that represents sequence of 2 sub-models, needed to be
matched in the order.
|
class |
OptionalModel
Content specification class that represents an optional specification.
|
class |
StarModel
Model class that represents any number of repetitions of its submodel
(including no repetitions).
|
class |
TokenModel
Model class that encapsulates a single (obligatory) token instance.
|
Modifier and Type | Method and Description |
---|---|
ModelNode |
TokenModel.cloneModel()
Method that has to create a deep copy of the model, without
sharing any of existing Objects.
|
ModelNode |
StarModel.cloneModel()
Method that has to create a deep copy of the model, without
sharing any of existing Objects.
|
ModelNode |
OptionalModel.cloneModel()
Method that has to create a deep copy of the model, without
sharing any of existing Objects.
|
abstract ModelNode |
ModelNode.cloneModel()
Method that has to create a deep copy of the model, without
sharing any of existing Objects.
|
ModelNode |
ConcatModel.cloneModel()
Method that has to create a deep copy of the model, without
sharing any of existing Objects.
|
ModelNode |
ChoiceModel.cloneModel()
Method that has to create a deep copy of the model, without
sharing any of existing Objects.
|
ModelNode |
TokenContentSpec.rewrite() |
ModelNode |
SeqContentSpec.rewrite() |
abstract ModelNode |
ContentSpec.rewrite()
Method called as the first part of DFA construction, if necessary;
will usually create simpler
ModelNode instances that will
match definition this instance contains. |
ModelNode |
ChoiceContentSpec.rewrite() |
Constructor and Description |
---|
ChoiceModel(ModelNode[] subModels) |
ConcatModel(ModelNode left,
ModelNode right) |
OptionalModel(ModelNode model) |
StarModel(ModelNode model) |
Copyright © 2018 FasterXML. All rights reserved.