Uses of Class
com.senzing.sdk.SzEntityIds
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 SzEntityIds in com.senzing.sdk
Modifier and TypeMethodDescriptionSzEntityIds.Builder.build()
Builds a new instance ofSzEntityIds
using theLong
entity ID instances that were added to this builder instance.static SzEntityIds
SzEntityIds.of()
Constructs an empty instance with noLong
entity ID elements.static SzEntityIds
SzEntityIds.of
(long... entityIds) Constructs an instance with a variable-argument array oflong
entity ID instances.static SzEntityIds
Constructs an instance with exactly oneLong
entity ID.static SzEntityIds
Constructs an instance with a variable-argument array ofLong
entity ID instances.static SzEntityIds
Constructs an instance with exactly two entity ID's.static SzEntityIds
Constructs an instance with exactly three entity ID's.static SzEntityIds
Constructs an instance with exactly four entity ID's.static SzEntityIds
Constructs an instance with exactly five entity ID's.static SzEntityIds
SzEntityIds.of
(Long entityId1, Long entityId2, Long entityId3, Long entityId4, Long entityId5, Long entityId6) Constructs an instance with exactly six entity ID's.static SzEntityIds
SzEntityIds.of
(Long entityId1, Long entityId2, Long entityId3, Long entityId4, Long entityId5, Long entityId6, Long entityId7) Constructs an instance with exactly seven entity ID's.static SzEntityIds
SzEntityIds.of
(Long entityId1, Long entityId2, Long entityId3, Long entityId4, Long entityId5, Long entityId6, Long entityId7, Long entityId8) Constructs an instance with exactly eight entity ID's.static SzEntityIds
SzEntityIds.of
(Long entityId1, Long entityId2, Long entityId3, Long entityId4, Long entityId5, Long entityId6, Long entityId7, Long entityId8, Long entityId9) Constructs an instance with exactly nine entity ID's.static SzEntityIds
SzEntityIds.of
(Long entityId1, Long entityId2, Long entityId3, Long entityId4, Long entityId5, Long entityId6, Long entityId7, Long entityId8, Long entityId9, Long entityId10) Constructs an instance with exactly ten entity ID's.static SzEntityIds
SzEntityIds.of
(Collection<Long> entityIds) Constructs with the specifiedCollection
of non-nullLong
entity ID instanes.Modifier and TypeMethodDescriptionSzEngine.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 ofSzEntityIds
-- which is aSet
of non-nullLong
entity ID's.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. -
Uses of SzEntityIds in com.senzing.sdk.core
Modifier and TypeMethodDescriptionSzCoreEngine.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 ofSzEntityIds
-- which is aSet
of non-nullLong
entity ID's.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.