Interface IPDNotFound
-
- All Superinterfaces:
IPDData
- All Known Implementing Classes:
PDCacheNotFound
,PDChannelNotFound
,PDContentItemNotFound
,PDContentListItemNotFound
,PDContentTypeElementNotFound
,PDContentTypeNotFound
,PDDateTimeNotFound
,PDElementNotFound
,PDLanguageNotFound
,PDListEntryNotFound
,PDListNotFound
,PDSectionNotFound
,PDStatementNotFound
,PDVersionNotFound
public interface IPDNotFound extends IPDData
Basic interface that is used as a basis for instances where a data object does not exist or cannot be found.As a general rule, the publish API does not return
null
when an object cannot be found, for instance when aget
method is called. Instead it returns a blank instance for the object.This blank instance can be easily tested for by calling the
#exists()
method defined below.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default boolean
exists()
Checks whether the object exists or not.
-