|
|
@ -534,6 +534,7 @@ public class Config { |
|
|
|
* if {@code true} recursively adds the names defined in all base |
|
|
|
* if {@code true} recursively adds the names defined in all base |
|
|
|
* configurations |
|
|
|
* configurations |
|
|
|
* @return the list of names defined for this section |
|
|
|
* @return the list of names defined for this section |
|
|
|
|
|
|
|
* @since 3.2 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public Set<String> getNames(String section, boolean recursive) { |
|
|
|
public Set<String> getNames(String section, boolean recursive) { |
|
|
|
return getState().getNames(section, null, recursive); |
|
|
|
return getState().getNames(section, null, recursive); |
|
|
@ -548,6 +549,7 @@ public class Config { |
|
|
|
* if {@code true} recursively adds the names defined in all base |
|
|
|
* if {@code true} recursively adds the names defined in all base |
|
|
|
* configurations |
|
|
|
* configurations |
|
|
|
* @return the list of names defined for this subsection |
|
|
|
* @return the list of names defined for this subsection |
|
|
|
|
|
|
|
* @since 3.2 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public Set<String> getNames(String section, String subsection, |
|
|
|
public Set<String> getNames(String section, String subsection, |
|
|
|
boolean recursive) { |
|
|
|
boolean recursive) { |
|
|
|