package org.argeo.api.acr; import java.util.Map; /** A hierarchical structure of unnamed mappings. */ public interface StructuredData extends Map, Iterable { /* * DEFAULT METHODS */ default A adapt(Class clss) { throw new UnsupportedOperationException("Cannot adapt content " + this + " to " + clss.getName()); } }