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.
This package provides the "core" implementation of the Senzing SDK for Java defined in the com.senzing.sdk package.
  • Uses of SzNotFoundException in com.senzing.sdk

    Methods in com.senzing.sdk that throw SzNotFoundException
    Modifier and Type
    Method
    Description
    SzEngine.findNetwork(SzEntityIds entityIds, int maxDegrees, int buildOutDegrees, int buildOutMaxEntities, Set<SzFlag> flags)
    Finds a network of entity relationships surrounding the paths between a set of entities identified by one or more entity ID's specified in an instance of SzEntityIds -- which is a Set of non-null Long entity ID's.
    SzEngine.findNetwork(SzRecordKeys recordKeys, int maxDegrees, int buildOutDegrees, int buildOutMaxEntities, Set<SzFlag> flags)
    Finds a network of entity relationships surrounding the paths between a set of entities having the constituent records identified by the data source code and record ID pairs contained in the specified instance of SzRecordKeys -- which is a Set of one or more non-null SzRecordKey instances.
    SzEngine.findPath(long startEntityId, long endEntityId, int maxDegrees, SzEntityIds avoidEntityIds, Set<String> requiredDataSources, Set<SzFlag> flags)
    Finds a relationship path between two entities identified by their entity ID's.
    SzEngine.findPath(SzRecordKey startRecordKey, SzRecordKey endRecordKey, int maxDegrees, SzRecordKeys avoidRecordKeys, Set<String> requiredDataSources, Set<SzFlag> flags)
    Finds a relationship path between two entities identified by the data source codes and record ID's of their constituent records given by the specified start and end SzRecordKey instances.
    SzEngine.getEntity(long entityId, Set<SzFlag> flags)
    This method is used to retrieve information about a specific resolved entity.
    SzEngine.getEntity(SzRecordKey recordKey, Set<SzFlag> flags)
    This method is used to retrieve information about the resolved entity that contains a specific record that is identified by the data source code and record ID associated with the specified SzRecordKey.
    SzEngine.getRecord(SzRecordKey recordKey, Set<SzFlag> flags)
    Retrieves the record identified by the data source code and record ID from the specified SzRecordKey.
    SzEngine.getVirtualEntity(Set<SzRecordKey> recordKeys, Set<SzFlag> flags)
    Describes a hypothetically entity that would be composed of the one or more records identified by the data source code and record ID pairs in the specified Set of SzRecordKey instances.
    SzEngine.howEntity(long entityId, Set<SzFlag> flags)
    Deterimes how an entity identified by the specified entity ID was constructed from its constituent records.
    SzEngine.whyEntities(long entityId1, long entityId2, Set<SzFlag> flags)
    Determines the ways in which two entities identified by the specified entity ID's are related to each other.
    SzEngine.whyRecordInEntity(SzRecordKey recordKey, Set<SzFlag> flags)
    Determines why the record identified by the data source code and record ID in the specified in an SzRecordKey is included in its respective entity.
    SzEngine.whyRecords(SzRecordKey recordKey1, SzRecordKey recordKey2, Set<SzFlag> flags)
    Determines ways in which two records identified by the data source code and record ID pairs from the specified SzRecordKey instances are related to each other.
  • Uses of SzNotFoundException in com.senzing.sdk.core

    Modifier and Type
    Method
    Description
    SzCoreEngine.findNetwork(SzEntityIds entityIds, int maxDegrees, int buildOutDegrees, int buildOutMaxEntities, Set<SzFlag> flags)
    Finds a network of entity relationships surrounding the paths between a set of entities identified by one or more entity ID's specified in an instance of SzEntityIds -- which is a Set of non-null Long entity ID's.
    SzCoreEngine.findNetwork(SzRecordKeys recordKeys, int maxDegrees, int buildOutDegrees, int buildOutMaxEntities, Set<SzFlag> flags)
    Finds a network of entity relationships surrounding the paths between a set of entities having the constituent records identified by the data source code and record ID pairs contained in the specified instance of SzRecordKeys -- which is a Set of one or more non-null SzRecordKey instances.
    SzCoreEngine.findPath(long startEntityId, long endEntityId, int maxDegrees, SzEntityIds avoidEntityIds, Set<String> requiredDataSources, Set<SzFlag> flags)
    Finds a relationship path between two entities identified by their entity ID's.
    SzCoreEngine.findPath(SzRecordKey startRecordKey, SzRecordKey endRecordKey, int maxDegrees, SzRecordKeys avoidRecordKeys, Set<String> requiredDataSources, Set<SzFlag> flags)
    Finds a relationship path between two entities identified by the data source codes and record ID's of their constituent records given by the specified start and end SzRecordKey instances.
    SzCoreEngine.getEntity(long entityId, Set<SzFlag> flags)
    This method is used to retrieve information about a specific resolved entity.
    SzCoreEngine.getEntity(SzRecordKey recordKey, Set<SzFlag> flags)
    This method is used to retrieve information about the resolved entity that contains a specific record that is identified by the data source code and record ID associated with the specified SzRecordKey.
    SzCoreEngine.getRecord(SzRecordKey recordKey, Set<SzFlag> flags)
    Retrieves the record identified by the data source code and record ID from the specified SzRecordKey.
    SzCoreEngine.getVirtualEntity(Set<SzRecordKey> recordKeys, Set<SzFlag> flags)
    Describes a hypothetically entity that would be composed of the one or more records identified by the data source code and record ID pairs in the specified Set of SzRecordKey instances.
    SzCoreEngine.howEntity(long entityId, Set<SzFlag> flags)
    Deterimes how an entity identified by the specified entity ID was constructed from its constituent records.
    SzCoreEngine.whyEntities(long entityId1, long entityId2, Set<SzFlag> flags)
    Determines the ways in which two entities identified by the specified entity ID's are related to each other.
    SzCoreEngine.whyRecordInEntity(SzRecordKey recordKey, Set<SzFlag> flags)
    Determines why the record identified by the data source code and record ID in the specified in an SzRecordKey is included in its respective entity.
    SzCoreEngine.whyRecords(SzRecordKey recordKey1, SzRecordKey recordKey2, Set<SzFlag> flags)
    Determines ways in which two records identified by the data source code and record ID pairs from the specified SzRecordKey instances are related to each other.