try this:
public String getTestGauge(){
return String.valueOf(<yourdouble>);
}
–> this is prettier
return (new Double(<yourdouble>).toString());
solved Converting double to string with a return
try this:
public String getTestGauge(){
return String.valueOf(<yourdouble>);
}
–> this is prettier
return (new Double(<yourdouble>).toString());
solved Converting double to string with a return