Java Utililty Methods Args Parse

List of utility methods to do Args Parse

Description

The list of methods to do Args Parse are organized into topic(s).

Method

SetparseStringArrayToSet(String[] value)
parse String Array To Set
Set<String> set = new HashSet<String>();
Collections.addAll(set, value);
return set;