suumo-search

Perform advanced searches on Suumo.jp
git clone https://git.neuralcrash.com/suumo-search.git
Log | Files | Refs | README

Area.java (370B)


      1 package xyz.kebigon.housesearch.domain;
      2 
      3 public enum Area
      4 {
      5     HOKKAIDO("010"), TOHOKU("020"), KANTO("030"), KOSHINETSU("040"), TOKAI("050"), KANSAI("060"), SHIKOKU("070"), CHUGOKU("080"), KYUSHU("090");
      6 
      7     private final String code;
      8 
      9     private Area(String code)
     10     {
     11         this.code = code;
     12     }
     13 
     14     public String getCode()
     15     {
     16         return code;
     17     }
     18 }