mirror of https://github.com/apache/cloudstack.git
- Checks the result of a call against the previous result. Either both are true or the method returns false.
- Do not thrown exceptions because some calls are not handling/rethrowing them. It would cause runtime problems.
- When doing a list.addAll(Arrays.asList(String[]{}) will cause problems when trying to cast the list.toArray() into an aray of String
It would only work if instead of calling addAll() I would pass it straight into the constructor:
e.g. List<String> l = new ArrayList(Arrays.asList(new String[]{});
Stirng [] s = (String[]) l.toArray();
But I did not like that implementation because it would require 2 arrays of string and combine them at the end.
|
||
|---|---|---|
| .. | ||
| bigswitch | ||
| brocade-vcs | ||
| cisco-vnmc | ||
| dns-notifier | ||
| elastic-loadbalancer | ||
| f5 | ||
| globodns | ||
| internal-loadbalancer | ||
| juniper-contrail | ||
| juniper-srx | ||
| midonet | ||
| netscaler | ||
| nicira-nvp | ||
| nuage-vsp | ||
| opendaylight | ||
| ovs | ||
| palo-alto | ||
| stratosphere-ssp | ||
| vxlan | ||