// first special sequence?
if (_sequences[arrayIdx] == null) {
if (noCase) {
_sequences[arrayIdx] = new NoCaseSequenceStore(false);
} else {
_sequences[arrayIdx] = new SequenceStore(false);
}
}
// add / replace property
return _sequences[arrayIdx].addSpecialSequence(property);