1 2 package org.jruby.test;3 4 public class AlphaSingleton {5 6 public static final AlphaSingleton getInstance() {7 return INSTANCE;8 }9 private static final AlphaSingleton INSTANCE = new AlphaSingleton();10 private AlphaSingleton() {11 }12 13 public String alpha() {14 return "Alpha";15 }16 17 }18