I have a program that makes use of a list of words (say, all the words in /usr/share/dict/words). The list of words is never modified, so I think I should make it static final. But how do I make it final? My current implementation looks like this (I'm lazy-loading the list of words when it's needed, though I'm not sure the lazy part is necessary, since the list isn't exactly that large or slow to load):
private static List<String> WORDS; // adding a final modifier doesn't work here
private static List<String> getWords() throws IOException {
if (WORDS == null) {
List<String> words = new LinkedList<String>();
String line;
BufferedReader br = new BufferedReader(new FileReader("my_dictionary.txt"));
while ((line = br.readLine()) != null) {
words.add(line);
}
WORDS = words;
}
return WORDS;
}
In the code above, I'm not allowed to make WORDS final. Any suggestions on how to do so? (Does it really matter whether I make it final or not?)
EDIT: I guess one way to do it is via the following:
private static final List<String> WORDS = getWords();
private static List<String> getWords() throws IOException {
List<String> words = new LinkedList<String>();
String line;
try {
BufferedReader br = new BufferedReader(new FileReader("my_dictionary.txt"));
while ((line = br.readLine()) != null) {
words.add(line);
}
} catch (IOException e) {
System.out.println("Error reading dictionary: " + e);
}
return words;
}
But this loses the lazy-loading part (though maybe that's not as important as being final? maybe I'm trying too hard to do things "by the book"?).

finalhere, since the data is private. That said, it sounds like you don't need lazy initialization here at all (list not large). I'd use your edited version (made immutable with @jits suggestion). – Michael Brewer-Davis May 30 '11 at 5:10