June 2003
Intermediate to advanced
672 pages
23h 48m
English
ClassificationScheme
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(int valueType)
throws javax.xml.registry.JAXRException; //L1
// Public Instance Methods
public abstract void addChildConcept(Concept concept)
throws javax.xml.registry.JAXRException; //L0
public abstract void addChildConcepts(Collection concepts)
throws javax.xml.registry.JAXRException; //L0
public abstract void removeChildConcept(Concept concept)
throws javax.xml.registry.JAXRException; //L0
public abstract void removeChildConcepts(Collection concepts)
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, ...
Read now
Unlock full access