fromCode static method
Implementation
static int fromCode(String code) {
switch (code) {
case ApSupportLanguageConstants.zh:
return 1;
case ApSupportLanguageConstants.en:
return 2;
case ApSupportLanguageConstants.system:
default:
return 0;
}
}