Interface MendixObjectReferenceSet

    • Method Detail

      • modelReference

        IMetaAssociation modelReference()
        Returns the meta-object for this reference set.
        Returns:
        the meta-object
      • referenceType

        java.lang.String referenceType()
        Returns the type of the referenced objects.
        Returns:
        the reference type
      • addValue

        void addValue​(IContext context,
                      IMendixIdentifier valueToAdd)
        Adds valueToAdd to this reference set.
        Parameters:
        context - the context
        valueToAdd - the object reference to add
      • removeValue

        void removeValue​(IContext context,
                         IMendixIdentifier valueToRemove)
        Removes valueToRemove from this reference set.
        Parameters:
        context - the context
        valueToRemove - the object reference to remove
      • getAddedIds

        @Deprecated
        java.util.Set<IMendixIdentifier> getAddedIds()
        Deprecated.
        since 9.7.0. This method was exposed for an internal optimization which is implemented differently now. There is no replacement.
        Returns the object references that were added to this reference set.
        Returns:
        the identifiers of the added objects
      • getRemovedIds

        @Deprecated
        java.util.Set<IMendixIdentifier> getRemovedIds()
        Deprecated.
        since 9.7.0. This method was exposed for an internal optimization which is implemented differently now. There is no replacement.
        Returns the object references that were removed from this reference set.
        Returns:
        the identifiers of the removed objects
      • setValue

        void setValue​(IContext context,
                      java.util.Set<IMendixIdentifier> valueToSet,
                      java.lang.Boolean performValidation)
        Sets the value of this reference set to valueToSet.
        Parameters:
        context - the context
        valueToSet - the value to set
        performValidation - indicates whether to perform data validation
      • setValueFromDeserialization

        @Deprecated
        void setValueFromDeserialization​(IContext context,
                                         java.util.Set<IMendixIdentifier> ids)
        Deprecated.
        since 9.7.0. This method was exposed for internal purposes. There is no replacement.
        Sets the value of this reference set from a set of referenced identifiers.
        Parameters:
        context - the context
        ids - the identifiers of the objects to set
      • isBoth

        java.lang.Boolean isBoth()
        Returns whether this reference set is bidirectional.
        Returns:
        true if the set is bidirectional, false otherwise
      • contains

        java.lang.Boolean contains​(IMendixIdentifier id)
        Returns whether this reference set contain an object reference.
        Parameters:
        id - the identifier of the object to check
        Returns:
        true if the object is referenced, false otherwise
      • getValueFromStringSet

        java.util.Set<IMendixIdentifier> getValueFromStringSet​(java.lang.String stringValue)
        Parses string to a set of object references. The specified string should contain a comma-separated list of UUIDs.
        Parameters:
        stringValue - the string to parse
        Returns:
        the object identifiers