Name
ClassificationScheme
Synopsis
public interface ClassificationScheme extends RegistryEntry { // Public Constants public static final int VALUE_TYPE_EMBEDDED_PATH; //=1 public static final int VALUE_TYPE_NON_UNIQUE; //=2 public static final int VALUE_TYPE_UNIQUE; //=0 // Property Accessor Methods (by property name) public abstract int getChildConceptCount( ) throws javax.xml.registry.JAXRException; //L0 public abstract Collection getChildrenConcepts( ) throws javax.xml.registry.JAXRException; //L0 public abstract Collection getDescendantConcepts( ) throws javax.xml.registry.JAXRException; //L0 public abstract boolean isExternal( ) throws javax.xml.registry.JAXRException; //L0 public abstract int getValueType( ) throws javax.xml.registry.JAXRException; //L1 public abstract void setValueType(intvalueType
) throws javax.xml.registry.JAXRException; //L1 // Public Instance Methods public abstract void addChildConcept(Conceptconcept
) throws javax.xml.registry.JAXRException; //L0 public abstract void addChildConcepts(Collectionconcepts
) throws javax.xml.registry.JAXRException; //L0 public abstract void removeChildConcept(Conceptconcept
) throws javax.xml.registry.JAXRException; //L0 public abstract void removeChildConcepts(Collectionconcepts
) throws javax.xml.registry.JAXRException; //L0 }
A ClassificationScheme
represents a hierarchy of related classifications that can be used to categorize objects in a registry. There are several commonly used classification schemes, such as NAICS, ...
Get Java Web Services in a Nutshell now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.