Add toStringWithCommas and toStringWithFrenchCommas methods.

This commit is contained in:
Christian P. MOMON 2013-06-29 16:05:18 +02:00
parent 2d01b8e162
commit cfcf121e8a

View file

@ -383,6 +383,32 @@ public class StringList extends ArrayList<String>
return (result);
}
/**
*
*/
public String toStringWithCommas()
{
String result;
result = this.toStringSeparatedBy(",");
//
return (result);
}
/**
*
*/
public String toStringWithFrenchCommas()
{
String result;
result = this.toStringSeparatedBy(", ");
//
return (result);
}
/**
*
*/