Examples of ItemIterator


Examples of org.dspace.content.ItemIterator

            List<Integer> iids = new ArrayList<Integer>();
            for (BrowseItem bi : binfo.getBrowseItemResults())
            {
                iids.add(bi.getID());
            }
            ItemIterator ii = new ItemIterator(context, iids);
            MetadataExport exporter = new MetadataExport(context, ii, false);

            // Perform the export
            DSpaceCSV csv = exporter.export();
View Full Code Here

Examples of org.openhab.binding.astro.internal.util.ItemIterator

  /**
   * Iterates through all items and publishes the states.
   */
  public void publish(final PlanetName planetName) {
    final Planet planet = context.getPlanet(planetName);
    new ItemIterator().iterate(new ItemIteratorCallback() {

      @Override
      public void next(AstroBindingConfig bindingConfig, Item item) {
        if (planetName == bindingConfig.getPlanetName()) {
          try {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.