- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {ArrayList a =
new ArrayList<String>()
new ArrayList()
new ArrayList<Object>()
- Smart code suggestions by Codota
}
public static List<ConfigurationProperty> getAll() { List<ConfigurationProperty> l = new ArrayList<>(); Collections.addAll(l, values()); return l; }
public static ConfigurationProperty getConfigPropertyForSysProp(String systemProperty) { ConfigurationProperty result = null; for ( ConfigurationProperty p : values()) { if ( p.getSystemProperty().equals(systemProperty)) { result = p; break; } } return result; }