Interface IEntitySubtype

  • All Superinterfaces:
    com4j.Com4jObject

    public interface IEntitySubtype
    extends com4j.Com4jObject
    Represents an Entity Subtype.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      IList fields()
      The list of TDField objects for this type.
      java.lang.Object fields​(int index)  
      java.lang.String getAttributeValue​(java.lang.String entityAttrId)
      Get the value of an entity attribute by its id.
      java.lang.String getAttributeValueByName​(java.lang.String entityAttrName)
      Get the value of an entity attribute by its name.
      com4j.Com4jObject getField​(java.lang.String fieldName)
      Gets the TDField specified by FieldName.
      java.lang.String id()
      The Subtype ID.
      boolean isFieldRelevantToSubtype​(java.lang.String fieldName)
      Checks If Field (By Name) Is Relevant to this Subtype.
      java.lang.String name()
      The Subtype name.
      • Methods inherited from interface com4j.Com4jObject

        advise, dispose, equals, getComThread, getIUnknownPointer, getPointer, getPtr, hashCode, is, queryInterface, setName, toString
    • Method Detail

      • id

        java.lang.String id()

        The Subtype ID.

        Getter method for the COM property "ID"

        Returns:
        Returns a value of type java.lang.String
      • name

        java.lang.String name()

        The Subtype name.

        Getter method for the COM property "Name"

        Returns:
        Returns a value of type java.lang.String
      • fields

        IList fields()

        The list of TDField objects for this type.

        Getter method for the COM property "Fields"

        Returns:
        Returns a value of type step.repository.alm.v16.otaclient.IList
      • fields

        java.lang.Object fields​(int index)
      • getField

        com4j.Com4jObject getField​(java.lang.String fieldName)

        Gets the TDField specified by FieldName.

        Parameters:
        fieldName - Mandatory java.lang.String parameter.
        Returns:
        Returns a value of type com4j.Com4jObject
      • isFieldRelevantToSubtype

        boolean isFieldRelevantToSubtype​(java.lang.String fieldName)

        Checks If Field (By Name) Is Relevant to this Subtype.

        Parameters:
        fieldName - Mandatory java.lang.String parameter.
        Returns:
        Returns a value of type boolean
      • getAttributeValue

        java.lang.String getAttributeValue​(java.lang.String entityAttrId)

        Get the value of an entity attribute by its id.

        Parameters:
        entityAttrId - Mandatory java.lang.String parameter.
        Returns:
        Returns a value of type java.lang.String
      • getAttributeValueByName

        java.lang.String getAttributeValueByName​(java.lang.String entityAttrName)

        Get the value of an entity attribute by its name.

        Parameters:
        entityAttrName - Mandatory java.lang.String parameter.
        Returns:
        Returns a value of type java.lang.String