Uses of Class
com.senzing.sdk.SzNotFoundException
Packages that use SzNotFoundException
Package
Description
This package provides the interfaces, utility classes, enumerations,
constants and exception types pertaining to the Senzing SDK for Java.
-
Uses of SzNotFoundException in com.senzing.sdk
Methods in com.senzing.sdk that throw SzNotFoundExceptionModifier and TypeMethodDescriptiondefault String
SzEngine.findInterestingEntities
(long entityId) Convenience method for callingSzEngine.findInterestingEntities(long, Set)
withSzFlag.SZ_FIND_INTERESTING_ENTITIES_DEFAULT_FLAGS
as the value for theflags
parameter.SzEngine.findInterestingEntities
(long entityId, Set<SzFlag> flags) Experimental method.default String
SzEngine.findInterestingEntities
(SzRecordKey recordKey) Convenience method for callingSzEngine.findInterestingEntities(SzRecordKey, Set)
withSzFlag.SZ_FIND_INTERESTING_ENTITIES_DEFAULT_FLAGS
as the value for theflags
parameter.SzEngine.findInterestingEntities
(SzRecordKey recordKey, Set<SzFlag> flags) Experimental method.default String
SzEngine.findNetwork
(SzEntityIds entityIds, int maxDegrees, int buildOutDegrees, int buildOutMaxEntities) Convenience method for callingSzEngine.findNetwork(SzEntityIds, int, int, int, Set)
withSzFlag.SZ_FIND_NETWORK_DEFAULT_FLAGS
as the value for theflags
parameter.SzEngine.findNetwork
(SzEntityIds entityIds, int maxDegrees, int buildOutDegrees, int buildOutMaxEntities, Set<SzFlag> flags) Retrieves a network of relationships among entities, specified by entity IDs.default String
SzEngine.findNetwork
(SzRecordKeys recordKeys, int maxDegrees, int buildOutDegrees, int buildOutMaxEntities) Convenience method for callingSzEngine.findNetwork(SzRecordKeys, int, int, int, Set)
withSzFlag.SZ_FIND_NETWORK_DEFAULT_FLAGS
as the value for theflags
parameter.SzEngine.findNetwork
(SzRecordKeys recordKeys, int maxDegrees, int buildOutDegrees, int buildOutMaxEntities, Set<SzFlag> flags) Retrieves a network of relationships among entities, specified by record IDs.default String
SzEngine.findPath
(long startEntityId, long endEntityId, int maxDegrees) Convenience method for callingSzEngine.findPath(long, long, int, SzEntityIds, Set, Set)
usingnull
as the value for both the "avoid entity ID's" and the "required data sources" parameters andSzFlag.SZ_FIND_PATH_DEFAULT_FLAGS
as the value for theflags
parameter.default String
SzEngine.findPath
(long startEntityId, long endEntityId, int maxDegrees, SzEntityIds avoidEntityIds, Set<String> requiredDataSources) Convenience method for callingSzEngine.findPath(long, long, int, SzEntityIds, Set, Set)
usingSzFlag.SZ_FIND_PATH_DEFAULT_FLAGS
as the value for theflags
parameter.SzEngine.findPath
(long startEntityId, long endEntityId, int maxDegrees, SzEntityIds avoidEntityIds, Set<String> requiredDataSources, Set<SzFlag> flags) Searches for the shortest relationship path between two entities, specified by entity IDs.default String
Convenience method for callingSzEngine.findPath(long, long, int, SzEntityIds, Set, Set)
usingnull
as the value for both the "avoid entity ID's" and the "required data sources" parameters.default String
SzEngine.findPath
(SzRecordKey startRecordKey, SzRecordKey endRecordKey, int maxDegrees) Convenience method for callingSzEngine.findPath(SzRecordKey, SzRecordKey, int, SzRecordKeys, Set, Set)
usingnull
as the value for both the "avoid record keys" and the "required data sources" parameters andSzFlag.SZ_FIND_PATH_DEFAULT_FLAGS
as the value for theflags
parameter.default String
SzEngine.findPath
(SzRecordKey startRecordKey, SzRecordKey endRecordKey, int maxDegrees, SzRecordKeys avoidRecordKeys, Set<String> requiredDataSources) Convenience method for callingSzEngine.findPath(SzRecordKey, SzRecordKey, int, SzRecordKeys, Set, Set)
usingSzFlag.SZ_FIND_PATH_DEFAULT_FLAGS
as the value for theflags
parameter.SzEngine.findPath
(SzRecordKey startRecordKey, SzRecordKey endRecordKey, int maxDegrees, SzRecordKeys avoidRecordKeys, Set<String> requiredDataSources, Set<SzFlag> flags) Searches for the shortest relationship path between two entities, specified by record IDs.default String
SzEngine.findPath
(SzRecordKey startRecordKey, SzRecordKey endRecordKey, int maxDegrees, Set<SzFlag> flags) Convenience method for callingSzEngine.findPath(SzRecordKey, SzRecordKey, int, SzRecordKeys, Set, Set)
usingnull
as the value for both the "avoid record keys" and the "required data sources" parameters.default String
SzEngine.getEntity
(long entityId) Convenience method for callingSzEngine.getEntity(long,Set)
usingSzFlag.SZ_ENTITY_DEFAULT_FLAGS
as the value for theflags
parameter.Retrieves information about an entity, specified by entity ID.default String
SzEngine.getEntity
(SzRecordKey recordKey) Convenience method for callingSzEngine.getEntity(SzRecordKey,Set)
usingSzFlag.SZ_ENTITY_DEFAULT_FLAGS
as the value for theflags
parameter.SzEngine.getEntity
(SzRecordKey recordKey, Set<SzFlag> flags) Retrieves information about an entity, specified by record ID.default String
SzEngine.getRecord
(SzRecordKey recordKey) Convenience method for callingSzEngine.getRecord(SzRecordKey, Set)
usingSzFlag.SZ_RECORD_DEFAULT_FLAGS
as the value for theflags
parameter.SzEngine.getRecord
(SzRecordKey recordKey, Set<SzFlag> flags) Retrieves information about a record.default String
SzEngine.getVirtualEntity
(Set<SzRecordKey> recordKeys) Convenience method for callingSzEngine.getVirtualEntity(Set, Set)
usingSzFlag.SZ_VIRTUAL_ENTITY_DEFAULT_FLAGS
as the value for theflags
parameter.SzEngine.getVirtualEntity
(Set<SzRecordKey> recordKeys, Set<SzFlag> flags) Describes how an entity would look if composed of a given set of records.default String
SzEngine.howEntity
(long entityId) Convenience method for callingSzEngine.howEntity(long, Set)
usingSzFlags.SZ_HOW_ENTITY_DEFAULT_FLAGS
as the value for theflags
parameter.Explains how an entity was constructed from its records.default String
SzEngine.whyEntities
(long entityId1, long entityId2) Convenience method for callingSzEngine.whyEntities(long, long, Set)
withSzFlag.SZ_WHY_ENTITIES_DEFAULT_FLAGS
as the value for theflags
parameter.SzEngine.whyEntities
(long entityId1, long entityId2, Set<SzFlag> flags) Describes the ways two entities relate to each other.default String
SzEngine.whyRecordInEntity
(SzRecordKey recordKey) Convenience method for callingSzEngine.whyRecordInEntity(SzRecordKey, Set)
withSzFlag.SZ_WHY_RECORD_IN_ENTITY_DEFAULT_FLAGS
as the value for theflags
parameter.SzEngine.whyRecordInEntity
(SzRecordKey recordKey, Set<SzFlag> flags) Describes the ways a record relates to the rest of its respective entity.default String
SzEngine.whyRecords
(SzRecordKey recordKey1, SzRecordKey recordKey2) Convenience method for callingSzEngine.whyRecords(SzRecordKey, SzRecordKey, Set)
withSzFlag.SZ_WHY_RECORDS_DEFAULT_FLAGS
as the value for theflags
parameter.SzEngine.whyRecords
(SzRecordKey recordKey1, SzRecordKey recordKey2, Set<SzFlag> flags) Describes the ways two records relate to each other.default String
Convenience method for callingSzEngine.whySearch(String, long, String, Set)
with anull
value for the search profile parameter andSzFlag.SZ_WHY_SEARCH_DEFAULT_FLAGS
as the value for theflags
parameter.default String
Convenience method for callingSzEngine.whySearch(String, long, String, Set)
usingSzFlag.SZ_WHY_SEARCH_DEFAULT_FLAGS
as the value for theflags
parameter.Describes the ways a set of search attributes relate to an entity.default String
Convenience method for callingSzEngine.whySearch(String, long, String, Set)
with anull
value for the search profile parameter.