enum
should a cache be used for faster psn generation, see ForceCache
memory consumption is one bit per possible pseudonym: mem_for_cache = alphabet_length ^ pseudonym_length / 8 / 1024 / 1024 MB
e.g.
public static finalDomainPropertiesINCLUDE_PREFIX_IN_CHECK_DIGIT_CALCULATION
boolean
should the prefix be used to calculate the check digit(s)
default false
INCLUDE_SUFFIX_IN_CHECK_DIGIT_CALCULATION
public static finalDomainPropertiesINCLUDE_SUFFIX_IN_CHECK_DIGIT_CALCULATION
boolean
should the suffix be used to calculate the check digit(s)
default false
USE_LAST_CHAR_AS_DELIMITER_AFTER_X_CHARS
public static finalDomainPropertiesUSE_LAST_CHAR_AS_DELIMITER_AFTER_X_CHARS
int
use last char of the given alphabet as delimiter symbol after the given number of other chars within the pseudonym
e.g. 123.456.789 or abcd-efgh-ijkl
default 0 (which means dont use ...)
enum
should a cache be used for faster psn generation, see ForceCache
memory consumption is one bit per possible pseudonym: mem_for_cache = alphabet_length ^ pseudonym_length / 8 / 1024 / 1024 MB
e.g. alphabet = numbers, length = 8 -> mem_for_cache = 10 ^ 8 / (8 * 1024 * 1024) = 11.92 MB
default ForceCache.DEFAULT if memory consumption invalid input: '<' 120 MB (numbers with length = 9) then true, else false
Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (Extraneous whitespace characters are
not permitted.)
Parameters:
name - the name of the enum constant to be returned.