Even if the filenames aren't predictable based on number, you could still have a collection of them. For example:
// Common prefix removed for brevity
private static final String[] IMAGE_FILES = {
"img1.gif", "happy.gif", "sad.gif" /* etc */
};
Then:
Image[] images = new Image[IMAGE_FILES.length];
for (int i = 0; i < images.length; i++) {
images[i] = getImage(getDocumentBase(), "pics/" + IMAGE_FILES[i]);
}
(There may well be a nicer way of transforming one array into another using a lambda in Java 8 - I haven't checked.)
It's not clear to me that an Images class is a good idea though - it doesn't really sound like something you'd typically create an instance of. I'd also strongly recommend using private fields.
for-loopto load each one based on the needs of the configuration