Package omero.api

Interface AMD_Search_not

  • All Superinterfaces:
    Ice.AMDCallback

    public interface AMD_Search_not
    extends Ice.AMDCallback
    Applies the next by* method to the previous by* method, so that a call hasNext, next, or results sees only the intersection of the two calls. For example,
     
     service.onlyType(Image.class);
     service.byFullText("foo");
     service.complement();
     service.byAnnotatedWith(TagAnnotation.class);
     
     
    will return all the Images not annotated with TagAnnotation.

    Calling this method overrides a previous setting of or or and. If there is no active queries (i.e. activeQueries > 0), then an ApiUsageException will be thrown.

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void ice_response()
      ice_response indicates that the operation completed successfully.
      • Methods inherited from interface Ice.AMDCallback

        ice_exception
    • Method Detail

      • ice_response

        void ice_response()
        ice_response indicates that the operation completed successfully.