Interface IItemType


public interface IItemType
Identifying information for an item type in an i2 Analyze schema.
Since:
11.5
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the identifier of this item type within its schema.
    Gets the short name of the schema that contains this item type.
    default boolean
    matches(String schemaShortName, String itemTypeId)
    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

      default boolean matches(String schemaShortName, String itemTypeId)
      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 this IItemType; false otherwise.