OPENDJ-66 (CR-1365) DS does not failover between replication servers in different groups when configured explicitly for one of the groups
Fixing checkstyle errors.
| | |
| | | * <code>public Iterator<String> myIteratorMethod();</code> |
| | | * <p> |
| | | * Classical use with for or while loop: |
| | | * |
| | | * |
| | | * <pre> |
| | | * for (Iterator<String> it = myIteratorMethod(); it.hasNext();) |
| | | * { |
| | |
| | | * // use it |
| | | * } |
| | | * </pre> |
| | | * |
| | | * |
| | | * Improved use with foreach: |
| | | * |
| | | * |
| | | * <pre> |
| | | * for (String s : StaticUtils.toIterable(myIteratorMethod())) |
| | | * { |
| | | * } |
| | | * </pre> |
| | | * |
| | | * |
| | | * </p> |
| | | * |
| | | * @param <T> |