br.com.codecode.dryutil.postmon.CidadeInfo 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 CidadeInfo {
String area_km2;
int codigo_ibge;
String estado;
@Override
public String toString() {
return "\n [area_km2=" + area_km2 + ", codigo_ibge=" + codigo_ibge + ", estado=" + estado + "]";
}
}