br.com.codecode.dryutil.postmon.EstadoInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dry-util Show documentation
Show all versions of dry-util Show documentation
Dont Repeat Yourself! - Utilities
The newest version!
package br.com.codecode.dryutil.postmon;
public class EstadoInfo {
String area_km2;
int codigo_ibge;
String nome;
@Override
public String toString() {
return "\n [area_km2=" + area_km2 + ", codigo_ibge=" + codigo_ibge + ", nome=" + nome + "]";
}
}