private static FieldCollectionType toFieldCollectionType()

in core/src/main/java/org/apache/sling/testing/mock/osgi/OsgiMetadataUtil.java [626:633]


        private static FieldCollectionType toFieldCollectionType(String value) {
            for (FieldCollectionType item : FieldCollectionType.values()) {
                if (StringUtils.equalsIgnoreCase(item.name(), value)) {
                    return item;
                }
            }
            return FieldCollectionType.SERVICE;
        }