1 package mobisnap.mobile_trx; 2 3 /*** 4 * Class to represent the NULL sql value 5 */ 6 public class SQLNull 7 { 8 static SQLNull instance = new SQLNull(); 9 10 public SQLNull() { 11 } 12 13 public static SQLNull getInstance() { 14 return instance; 15 } 16 17 public String toString() { 18 return "NULL"; 19 } 20 }

This page was automatically generated by Maven