private Iterator<String> getNameLookupKeys(String name, int nameStyle) {
   ContactLocaleUtils utils = ContactLocaleUtils.getInstance();
   return utils.getNameLookupKeys(name, nameStyle);
 }
 private ArrayList<String> getLabels() {
   ContactLocaleUtils utils = ContactLocaleUtils.getInstance();
   return utils.getLabels();
 }
 private String getLabel(String name) {
   ContactLocaleUtils utils = ContactLocaleUtils.getInstance();
   int bucketIndex = utils.getBucketIndex(name);
   return utils.getBucketLabel(bucketIndex);
 }