Package com.sas.services.publish
Class ExtendedAttributeData
java.lang.Object
com.sas.services.publish.ExtendedAttributeData
public class ExtendedAttributeData
extends Object
This class represents the extended attribute information for a data set. This class is needed by
the framework and is used by transport implementations to retrieve dataset attribute information
from a persisted package. This class should not be invoked by the calling application.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionMap<String, String> Return the String extended attributes as defined on the data set.Map<String, Character> Return the missing value extended attributes as defined on the data set.Map<String, Double> Return the numeric extended attributes as defined on the data set.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
ExtendedAttributeData
public ExtendedAttributeData()
-
-
Method Details
-
getDataSetCharacterAttributes
public Map<String,String> getDataSetCharacterAttributes()Return the String extended attributes as defined on the data set.- Returns:
- the map of attribute names and values
-
getDataSetNumericAttributes
public Map<String,Double> getDataSetNumericAttributes()Return the numeric extended attributes as defined on the data set.- Returns:
- the map of attribute names and values
-
getDataSetMissingValueAttributes
public Map<String,Character> getDataSetMissingValueAttributes()Return the missing value extended attributes as defined on the data set.- Returns:
- the map of attribute names and values
-