Uses of Class
com.senzing.sdk.SzEntityIds

Packages that use SzEntityIds
Package
Description
This package provides the interfaces, utility classes, enumerations, constants and exception types pertaining to the Senzing SDK for Java.
  • Uses of SzEntityIds in com.senzing.sdk

    Methods in com.senzing.sdk that return SzEntityIds
    Modifier and Type
    Method
    Description
    SzEntityIds.Builder.build()
    Builds a new instance of SzEntityIds using the Long entity ID instances that were added to this builder instance.
    SzEntityIds.of()
    Constructs an empty instance with no Long entity ID elements.
    SzEntityIds.of(long... entityIds)
    Constructs an instance with a variable-argument array of long entity ID instances.
    SzEntityIds.of(Long entityId)
    Constructs an instance with exactly one Long entity ID.
    SzEntityIds.of(Long... entityIds)
    Constructs an instance with a variable-argument array of Long entity ID instances.
    SzEntityIds.of(Long entityId1, Long entityId2)
    Constructs an instance with exactly two entity ID's.
    SzEntityIds.of(Long entityId1, Long entityId2, Long entityId3)
    Constructs an instance with exactly three entity ID's.
    SzEntityIds.of(Long entityId1, Long entityId2, Long entityId3, Long entityId4)
    Constructs an instance with exactly four entity ID's.
    SzEntityIds.of(Long entityId1, Long entityId2, Long entityId3, Long entityId4, Long entityId5)
    Constructs an instance with exactly five entity ID's.
    SzEntityIds.of(Long entityId1, Long entityId2, Long entityId3, Long entityId4, Long entityId5, Long entityId6)
    Constructs an instance with exactly six entity ID's.
    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.
    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.
    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.
    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.
    SzEntityIds.of(Collection<Long> entityIds)
    Constructs with the specified Collection of non-null Long entity ID instanes.
    Methods in com.senzing.sdk with parameters of type SzEntityIds
    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.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.