00001 package jpl.util;
00002
00003
00004 public class Test1
00005 {
00006
00007 public static String booleans_to_string( boolean p0, boolean p1)
00008 {
00009 return "{" + p0 + "," + p1 + "}";
00010 }
00011
00012 public static String chars_to_string( char p0, char p1)
00013 {
00014 return "{" + p0 + "," + p1 + "}";
00015 }
00016
00017 public static String bytes_to_string( byte p0, byte p1)
00018 {
00019 return "{" + p0 + "," + p1 + "}";
00020 }
00021
00022 public static String shorts_to_string( short p0, short p1)
00023 {
00024 return "{" + p0 + "," + p1 + "}";
00025 }
00026
00027 public static String ints_to_string( int p0, int p1)
00028 {
00029 return "{" + p0 + "," + p1 + "}";
00030 }
00031
00032 public static String longs_to_string( long p0, long p1)
00033 {
00034 return "{" + p0 + "," + p1 + "}";
00035 }
00036
00037 public static String floats_to_string( float p0, float p1)
00038 {
00039 return "{" + p0 + "," + p1 + "}";
00040 }
00041
00042 public static String doubles_to_string( double p0, double p1)
00043 {
00044 return "{" + p0 + "," + p1 + "}";
00045 }
00046
00047
00048 public static String boolean_to_string( boolean p)
00049 {
00050 return "{" + p + "}";
00051 }
00052
00053 public static String char_to_string( char p)
00054 {
00055 return "{" + p + "}";
00056 }
00057
00058 public static String byte_to_string( byte p)
00059 {
00060 return "{" + p + "}";
00061 }
00062
00063 public static String short_to_string( short p)
00064 {
00065 return "{" + p + "}";
00066 }
00067
00068 public static String int_to_string( int p)
00069 {
00070 return "{" + p + "}";
00071 }
00072
00073 public static String long_to_string( long p)
00074 {
00075 return "{" + p + "}";
00076 }
00077
00078 public static String float_to_string( float p)
00079 {
00080 return "{" + p + "}";
00081 }
00082
00083 public static String double_to_string( double p)
00084 {
00085 return "{" + p + "}";
00086 }
00087
00088
00089 public static boolean boolean_1()
00090 {
00091 return false;
00092 }
00093
00094 public static boolean boolean_2()
00095 {
00096 return true;
00097 }
00098
00099 public static char char_1()
00100 {
00101 return '\uFFFF';
00102 }
00103
00104 public static byte byte_1()
00105 {
00106 return 127;
00107 }
00108
00109 public static short short_1()
00110 {
00111 return 32767;
00112 }
00113
00114 public static int int_1()
00115 {
00116 return 0x01234567;
00117 }
00118
00119 public static int int_2()
00120 {
00121 return 0x89ABCDEF;
00122 }
00123
00124 public static long long_1()
00125 {
00126 return 0x0123456789ABCDEFL;
00127 }
00128
00129 public static long long_2()
00130 {
00131 return 0xFFFFFFFFFFFFFFFEL;
00132 }
00133
00134 public static long long_3()
00135 {
00136 return 0x0000000100000002L;
00137 }
00138
00139 public static long long_4()
00140 {
00141 return 0xFFFFFFFF00000000L;
00142 }
00143
00144 public static long long_5()
00145 {
00146 return 0x00000000FFFFFFFFL;
00147 }
00148
00149 public static long long_6()
00150 {
00151 return 0x0000000080000000L;
00152 }
00153
00154 public static long long_7()
00155 {
00156 return 0x000000007FFFFFFFL;
00157 }
00158
00159 public static float float_1()
00160 {
00161 return 12345.6789F;
00162 }
00163
00164 public static double double_1()
00165 {
00166 return 12345.6789D;
00167 }
00168
00169 public static double double_1a()
00170 {
00171 return 2.3456789e+100D;
00172 }
00173
00174 public static double double_1b()
00175 {
00176 return 3.456789e-100D;
00177 }
00178
00179 public static double double_1c()
00180 {
00181 return 0.0D;
00182 }
00183
00184 public static double double_2()
00185 {
00186 return Double.MIN_VALUE;
00187 }
00188
00189 public static double double_3()
00190 {
00191 return Double.MAX_VALUE;
00192 }
00193
00194 public static double double_4()
00195 {
00196 return Double.NEGATIVE_INFINITY;
00197 }
00198
00199 public static double double_5()
00200 {
00201 return Double.POSITIVE_INFINITY;
00202 }
00203
00204 public static double double_6()
00205 {
00206 return Double.NaN;
00207 }
00208
00209 }
00210
00211