summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
03b0362)
- removed deprecated utlities method
*/
private static char[] validChars;
*/
private static char[] validChars;
- /**
- * All available personal titles as a list
- * <p>
- * @return Selectable personal titles
- * @deprecated Arrays.asList() is there
- */
- @Deprecated
- public static List<PersonalTitle> allPersonalTitlesAsList () {
- // Init list
- List<PersonalTitle> list = new LinkedList<>();
-
- // Walk through all genders
- for (final PersonalTitle title : PersonalTitle.values()) {
- // Add it and check if it has been added
- list.add(title);
- }
-
- // Return it
- return list;
- }
-
/**
* Getter for personal title enumeration from given character
* <p>
/**
* Getter for personal title enumeration from given character
* <p>