Exemplo n.º 1
0
  public static Set<String> getPropertyNames() {
    final Set<String> propertyNames = new HashSet<String>();

    for (Option option : PROPERTIES) {
      propertyNames.add(option.propertyName());
    }

    return Collections.unmodifiableSet(propertyNames);
  }