}
private static Function<Matcher, Feature> toFeature() {
return new Function<Matcher, Feature>() {
@Override public Feature apply(Matcher featureMatcher) {
return new Feature(featureMatcher.group(3),
featureMatcher.group(2),
new CiServerType(featureMatcher.group(1)),
featureMatcher.group(4),
featureMatcher.group(5));
}