Class PropertyValueTable

All Implemented Interfaces:
Serializable, Cloneable, Iterable<PropertyValue>, Collection<PropertyValue>, List<PropertyValue>

public class PropertyValueTable extends ModelComponentTable<PropertyValue>
See Also:
  • Constructor Details

  • Method Details

    • add

      public PropertyValue add(int index)
      Description copied from class: DictionaryComponentTable
      Add a new element to the table at the specified location and return the new element Must be abstract because generics cannot do "new T"
      Specified by:
      add in class DictionaryComponentTable<PropertyValue>
      Returns:
      new table element
    • addPropertyValue

      public PropertyValue addPropertyValue(Property property)
      Adds a new PropertyValue for the specified Property
      Parameters:
      property - Property to create PropertyValue
      Returns:
      PropertyValue
    • addPropertyValue

      public PropertyValue addPropertyValue(Property property, List<DOID> initTypes)
    • getByPropertyAlias

      public PropertyValue getByPropertyAlias(String propertyAlias)
      Returns the PropertyValue in this table with the given property alias
      Parameters:
      propertyAlias - alias of FactType property
      Returns:
      PropertyValue with the given property alias if available. null otherwise