Roedy 's convertor, Where is Short ? Where is Byte?  
Author Message
mphelps





PostPosted: 2003-11-18 10:52:00 Top

java-programmer, Roedy 's convertor, Where is Short ? Where is Byte? Hi Roedy,

This is what you advertise for in
http://www.mindprod.com/zips/java/converter.txt:

signed byte Byte
unsigned byte Byte
short Short
char Character
int Integer
long Long
float Float
double Double
char[] String

This is what you have in your code:

public static final String [] flavours = {
"boolean",
"/*signed*/ byte",
"/*unsigned*/ byte",
"short",
"char",
"int",
"long",
"float",
"double",
"String",
"Boolean",
"Character",
"Integer",
"Long",
"Float",
"Double"};


Noticed anything? Is it voluntary or did you forget java.lang.Byte
and java.lang.Short?

Either the advertisement or the code need to be updated.

My apologies if you have already explained why.

BTW, neat little tool I always come back from time to time.

Cheers, Mike