int[] indeces = new int[values.length - 1];
for (int i = 0; i < indeces.length; i += 1) {
indeces[i] = getIntValue(values[i + 1]);
}
FormatReferenceFinder formatReferenceFinder =
pageContext.getFormatReferenceFinder();
FormatReference reference =
formatReferenceFinder.getFormatReference(name, indeces);
return new FormatReferenceValueImpl(
expressionContext.getFactory(), reference);
}