Skip to content

Instantly share code, notes, and snippets.

@brikis98
Created December 7, 2011 03:57
Show Gist options
  • Select an option

  • Save brikis98/1441392 to your computer and use it in GitHub Desktop.

Select an option

Save brikis98/1441392 to your computer and use it in GitHub Desktop.
Name Formatter
public interface NameFormatter
{
enum Style
{
FAMILIAR_NAME,
FULL_NAME,
LIST_NAME
};
public String format(String firstName, String lastName, String maidenName, Style style);
}
@brikis98
Copy link
Author

brikis98 commented Dec 7, 2011

See LinkedIn Translation: What's in a Name? for more information.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment