| 
What this is
 Other links
 The source code
class Example {
	public static final Example A = new Example("A2", "A1");
	public static final Example B = Example.getExample("B1", "B2");
	
	public static final Example C;    
	public static final Example D;
	static {
		C = new Example("C2", "C1");
		D = Example.getExample("D1", "D2");
	}
	
	public Example(String b, String a) {
	}
	
	public static Example getExample(String arg1, String arg2) {
		return new Example(arg2, arg1);
	}
}
 | 
| ... this post is sponsored by my books ... | |
         
           #1 New Release!  | 
      
         
           FP Best Seller  | 
  
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse 
URI on this website is
paid back to open source projects.