Searched defs:delimiterRegex (Results 1 - 2 of 2) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DSystemProperties.java368 * @param delimiterRegex The regular expression to use to split the value into elements in the set.
372 public static Set<String> getAsSet(String key, String delimiterRegex, Set<String> defaultValue) { argument
377 return asSet(value.split(delimiterRegex));
384 * @param delimiterRegex The regular expression to use to split the value into elements in the set.
387 public static Set<String> getAsSet(String key, String delimiterRegex) { argument
388 return getAsSet(key, delimiterRegex, Collections.<String>emptySet());
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DSystemProperties.java367 * @param delimiterRegex The regular expression to use to split the value into elements in the set.
371 public static Set<String> getAsSet(String key, String delimiterRegex, Set<String> defaultValue) { argument
376 return asSet(value.split(delimiterRegex));
383 * @param delimiterRegex The regular expression to use to split the value into elements in the set.
386 public static Set<String> getAsSet(String key, String delimiterRegex) { argument
387 return getAsSet(key, delimiterRegex, Collections.<String>emptySet());

Completed in 32 milliseconds