Examples of LkfnameBean


Examples of org.openqreg.bean.LkfnameBean

   * @param lkfcode
   * @return
   */
  public static LkfnameBean getNames(String lkfcode){
   
    LkfnameBean lkfbean = new LkfnameBean();
   
    if(lkfcode != null && lkfcode.length() >= 2){
      lkfbean.setLanName(getLanname(lkfcode.substring(0, 2)));
    }
    if(lkfcode != null && lkfcode.length() >= 4){
      lkfbean.setKommunName(getKommunname(lkfcode.substring(0, 4)));
    }
    if(lkfcode != null && lkfcode.length() >= 6){
      lkfbean.setForsamlingName(getForsamlingsname(lkfcode.substring(0, 6)));
    }
    return lkfbean;
   
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.