Package com.i2group.disco.schema
Interface IItemType
public interface IItemType
Identifying information for an item type in an i2 Analyze schema.
- Since:
- 11.5
-
Method Summary
Modifier and TypeMethodDescriptionGets the identifier of this item type within its schema.Gets the short name of the schema that contains this item type.default boolean
Indicates whether this item type is the same as one with the specified schema short name and item type identifier.
-
Method Details
-
getItemTypeId
String getItemTypeId()Gets the identifier of this item type within its schema.- Returns:
- See above.
-
getSchemaShortName
String getSchemaShortName()Gets the short name of the schema that contains this item type.Note: The schema short names are normalized. For the Information Store schema, the short name is "InfoStore".
- Returns:
- See above.
-
matches
Indicates whether this item type is the same as one with the specified schema short name and item type identifier.- Parameters:
schemaShortName
- The schema short name, which is normalized for comparison.itemTypeId
- The item type identifier, which is compared exactly.- Returns:
true
if the supplied schema short name and item type identifier match thisIItemType
;false
otherwise.
-