deprecatedpersistent class %iFind.Entity
extends %Persistent
The InterSystems IRIS NLP iKnow technology on which this output type is based is now deprecated. Please see the
product
documentation for more detail. The %iKnow.Index.Basic and %iKnow.Index.Minimal
index types, which only generate word-level content, remain fully supported.
This table contains all entities identified by iFind Semantic or Analytic indices in this namespace
using namespace-wide shared storage (cf the IFINDSHAREDSTORAGELOCATION parameter in
%iFind.Index.Basic).
parameter READONLY = 1;
READONLY = 1 means that objects can be created, opened but not saved or deleted.
Tables are projected to SQL as READONLY.
property EntityId
as %Integer;
property StrippedEntityId
as %iFind.Entity [ Calculated ];
Calculated property returning the entity ID of the entity corresponding to this row, with all words
stripped of leading and trailing punctuation. If no such entity exists, this
record's entity ID is returned.
property Value
as %String(COLLATION="EXACT",MAXLEN="");
String value for this entity
classmethod GetEntityId(pValue As %String)
as %Integer
[ SQLProc = GetEntityId ]
Returns the Entity ID corresponding to the supplied string
classmethod GetStrippedEntityId(pEntity As %String, pOriginalId As %Integer = "", pKeepChars As %String = $$$STRIPKEEP)
as %Integer
[ SQLProc = GetStrippedEntityId ]
Returns the Entity ID corresponding to the supplied string, after stripping off punctuation.
If no such entity exists, pOriginalId is returned.
index (EntityIdx on EntityId) [IdKey,PrimaryKey,Unique];
index (ValueIdx on Value) [Type = key,Unique];