encode static method
Implementation
static String encode(PersonNameUse value) {
switch (value) {
case PersonNameUse.usual:
return 'usual';
case PersonNameUse.official:
return 'official';
case PersonNameUse.temp:
return 'temp';
case PersonNameUse.nickname:
return 'nickname';
case PersonNameUse.anonymous:
return 'anonymous';
case PersonNameUse.maiden:
return 'maiden';
case PersonNameUse.old:
return 'old';
case PersonNameUse.other:
return 'other';
}
}