com.redislabs.picocliredis.Servers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of picocli-redis Show documentation
Show all versions of picocli-redis Show documentation
Picocli configuration for Redis
package com.redislabs.picocliredis;
import java.util.ArrayList;
import java.util.Arrays;
public class Servers extends ArrayList {
private static final long serialVersionUID = 1579622850280572371L;
public Servers(Server... servers) {
super(Arrays.asList(servers));
}
@Override
public String toString() {
if (size() == 1) {
return get(0).toString();
}
return super.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy