private SequenceType sequenceType;
public boolean sequenceTypeMatch(TaggedValuePointable tvp) {
byte tag = tvp.getTag();
Quantifier stq = sequenceType.getQuantifier();
ItemType it = sequenceType.getItemType();
if (tag == ValueTag.SEQUENCE_TAG) {
tvp.getValue(seqp);
Quantifier vq = getSequenceQuantifier(seqp);
if (stq.isSubQuantifier(vq)) {
if (it instanceof AnyItemType) {
return true;
} else {
int n = seqp.getEntryCount();