- 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 boolean has(Properties props) { return props.containsKey(INSTANCE.getKey()); } }
public static void del(Properties props) { props.remove(INSTANCE.getKey()); }
public static String[] get(Properties props) { String val = (String) props.get(INSTANCE.getKey()); return val != null && !"".equals(val) ? INSTANCE.fromString(val) : null; }
public static void set(Properties props, String[] value) { props.put(INSTANCE.getKey(), value != null ? INSTANCE.toString(value) : ""); }