Created
December 30, 2015 07:22
-
-
Save practice/272fa2eb688efef0252a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private String r06Display(String code) { | |
if (code == null) { | |
return ""; | |
} | |
if (code.equals("0")) { | |
return "없음"; | |
} | |
if (code.equals("1")) { | |
return "1mm 미만"; | |
} | |
if (code.equals("5")) { | |
return "1~4mm"; | |
} | |
if (code.equals("10")) { | |
return "5~9mm"; | |
} | |
if (code.equals("20")) { | |
return "10~19mm"; | |
} | |
if (code.equals("40")) { | |
return "20~39mm"; | |
} | |
if (code.equals("70")) { | |
return "40~69mm"; | |
} | |
if (code.equals("100")) { | |
return "70mm 이상"; | |
} | |
return ""; | |
} | |
private String s06Display(String code) { | |
if (code == null) { | |
return ""; | |
} | |
if (code.equals("0")) { | |
return "없음"; | |
} | |
if (code.equals("1")) { | |
return "1cm 미만"; | |
} | |
if (code.equals("5")) { | |
return "1~4cm"; | |
} | |
if (code.equals("10")) { | |
return "5~9cm"; | |
} | |
if (code.equals("20")) { | |
return "10~19cm"; | |
} | |
if (code.equals("100")) { | |
return "20 이상"; | |
} | |
return ""; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment