All Downloads are FREE. Search and download functionalities are using the official Maven repository.

no.ssb.lds.api.specification.SpecificationElement Maven / Gradle / Ivy

There is a newer version: 0.13
Show newest version
package no.ssb.lds.api.specification;

import java.util.List;
import java.util.Map;
import java.util.Set;

public interface SpecificationElement {

    String getName();

    String getDescription();

    SpecificationElement getParent();

    SpecificationElementType getSpecificationElementType();

    Set getJsonTypes();

    List getValidators();

    Set getRefTypes();

    Map getProperties();

    SpecificationElement getItems();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy