Interface NamedDomainObjectSet<T>

    • Method Detail

      • withType

        <S extends TNamedDomainObjectSet<S> withType​(java.lang.Class<S> type)
        Returns a collection containing the objects in this collection of the given type. The returned collection is live, so that when matching objects are later added to this collection, they are also visible in the filtered collection.
        Specified by:
        withType in interface DomainObjectCollection<T>
        Specified by:
        withType in interface DomainObjectSet<T>
        Specified by:
        withType in interface NamedDomainObjectCollection<T>
        Parameters:
        type - The type of objects to find.
        Returns:
        The matching objects. Returns an empty collection if there are no such objects in this collection.
      • named

        NamedDomainObjectSet<T> named​(Spec<java.lang.String> nameFilter)
        Returns a collection containing the objects with names matching the provided filter. The returned collection is live, so that when matching objects are added to this collection, they are also visible in the filtered collection. This method will NOT cause any pending objects in this container to be realized.
        Specified by:
        named in interface NamedDomainObjectCollection<T>
        Parameters:
        nameFilter - The specification to test names against.
        Returns:
        The collection of objects with names satisfying the filter. Returns an empty collection if there are no such objects in this collection.
      • matching

        NamedDomainObjectSet<T> matching​(Spec<? super T> spec)
        Returns a collection which contains the objects in this collection which meet the given specification. The returned collection is live, so that when matching objects are added to this collection, they are also visible in the filtered collection.
        Specified by:
        matching in interface DomainObjectCollection<T>
        Specified by:
        matching in interface DomainObjectSet<T>
        Specified by:
        matching in interface NamedDomainObjectCollection<T>
        Parameters:
        spec - The specification to use.
        Returns:
        The collection of matching objects. Returns an empty collection if there are no such objects in this collection.
      • matching

        NamedDomainObjectSet<T> matching​(Closure spec)
        Returns a collection which contains the objects in this collection which meet the given closure specification. The returned collection is live, so that when matching objects are added to this collection, they are also visible in the filtered collection.
        Specified by:
        matching in interface DomainObjectCollection<T>
        Specified by:
        matching in interface DomainObjectSet<T>
        Specified by:
        matching in interface NamedDomainObjectCollection<T>
        Parameters:
        spec - The specification to use. The closure gets a collection element as an argument.
        Returns:
        The collection of matching objects. Returns an empty collection if there are no such objects in this collection.
      • findAll

        java.util.Set<T> findAll​(Closure spec)
        Returns a collection which contains the objects in this collection which meet the given closure specification.
        Specified by:
        findAll in interface DomainObjectCollection<T>
        Specified by:
        findAll in interface DomainObjectSet<T>
        Parameters:
        spec - The specification to use. The closure gets a collection element as an argument.
        Returns:
        The collection of matching objects. Returns an empty collection if there are no such objects in this collection.