com.adobe.idp.dsc.registry.infomodel
Interface DataType


public interface DataType

Data type.


Method Summary
 long getArchiveId()
          Retrieves the archive identifier.
 java.lang.String getClassName()
          Retrieves the class name.
 java.lang.String getComponentId()
          Retrieves the component identifier.
 java.lang.String getComponentVersion()
          Retrieves the component version.
 java.util.Date getCreateTime()
          Retrieves the creation time.
 boolean getDeprecated()
          Determines whether the data type is deprecated or not
 java.lang.String getDeprecatedSince()
          Retrieves when the data type was deprecated.
 java.lang.String getDescription()
          Retrieves the description.
 java.lang.String getDescriptor()
          Retrieves the descriptor.
 java.lang.String getHint()
          Retrieves the hint.
 java.lang.String getId()
          Retrieves the identifier.
 int getMajorVersion()
          Retrieves the major version.
 int getMinorVersion()
          Retrieves the minor version.
 PropertyEditor getPropertyEditor()
          Retrieves the property editor.
 java.lang.String getReplacedBy()
          Returns the data type which replaces this data type.
 java.lang.String getSunsettingOn()
          When this data type is deprecated, retrieves when the data type is expected to be removed.
 java.lang.String getTitle()
          Retrieves the title.
 java.util.Date getUpdateTime()
          Retrieves the update time.
 boolean isList()
          Determines whether the data is contained in a list.
 boolean isMap()
          Determines whether the data is contained in a map.
 boolean isStandard()
          Determines whether the data is contained in a standard data type.
 

Method Detail

getId

java.lang.String getId()
Retrieves the identifier.

Returns:
The identifier.

getMajorVersion

int getMajorVersion()
Retrieves the major version.

Returns:
The major version.

getMinorVersion

int getMinorVersion()
Retrieves the minor version.

Returns:
The minor version.

getPropertyEditor

PropertyEditor getPropertyEditor()
Retrieves the property editor.

Returns:
The property editor.

isStandard

boolean isStandard()
Determines whether the data is contained in a standard data type.

Returns:
true if the data is contained in a standard data type, false otherwise.

isList

boolean isList()
Determines whether the data is contained in a list.

Returns:
true if the data is contained in a list, false otherwise.

isMap

boolean isMap()
Determines whether the data is contained in a map.

Returns:
true if the data is contained in a map, false otherwise.

getDeprecated

boolean getDeprecated()
Determines whether the data type is deprecated or not

Returns:
true if the data type is deprecated, false otherwise.

getDeprecatedSince

java.lang.String getDeprecatedSince()
Retrieves when the data type was deprecated.

Returns:
String containing when the data type was deprecated in the format of [.[.[.]]]

getSunsettingOn

java.lang.String getSunsettingOn()
When this data type is deprecated, retrieves when the data type is expected to be removed.

Returns:
String containing when the data type is expected to be removed in the format of [.[.[.]]]

getReplacedBy

java.lang.String getReplacedBy()
Returns the data type which replaces this data type.

Returns:
String containing the data type which replaces this data type.

getClassName

java.lang.String getClassName()
Retrieves the class name.

Returns:
The class name.

getTitle

java.lang.String getTitle()
Retrieves the title.

Returns:
The title.

getDescription

java.lang.String getDescription()
Retrieves the description.

Returns:
The description.

getHint

java.lang.String getHint()
Retrieves the hint.

Returns:
The hint.

getDescriptor

java.lang.String getDescriptor()
Retrieves the descriptor.

Returns:
The descriptor.

getComponentId

java.lang.String getComponentId()
Retrieves the component identifier.

Returns:
The component identifier.

getComponentVersion

java.lang.String getComponentVersion()
Retrieves the component version.

Returns:
The component version.

getArchiveId

long getArchiveId()
Retrieves the archive identifier.

Returns:
The archive identifier.

getCreateTime

java.util.Date getCreateTime()
Retrieves the creation time.

Returns:
The creation time.

getUpdateTime

java.util.Date getUpdateTime()
Retrieves the update time.

Returns:
The update time.