entityType

Returns the entity type.

Syntax

- (int)entityType

Parameters

None.

Returns

Returns the entity type.

Examples

  • Get the Entity Type
    SUPObjectList *changeLogs = [SUP101SUP101DB getChangeLogs:[SUPQuery getInstance]];
    if([changeLogs size] > 0)
    {
        for (id<SUPChangeLog> cl in changeLogs)
        {
           MBOLogInfo(@"changelog:[entityType=%d]\n", [cl entityType]);
        }
    }