72737475767778
public int getArrayIndex(){ Matcher matcher = ARRAY_INDEX_PATTERN.matcher(fragment); if(matcher.find()){ return Integer.parseInt(matcher.group(1)); } else throw new InvalidModelException("Could not get array index from fragment " + fragment); }