Examples of entries()


Examples of bak.pcj.map.IntKeyIntMap.entries()

    }

    public String benchmarkIterator(DataSet dataSet) {
        IntKeyIntMap c = create(dataSet.get(0), dataSet.get(0));
        startTimer();
        IntKeyIntMapIterator it = c.entries();
        while (it.hasNext()) {
            it.next();
            it.getKey();
            it.getValue();
        }
View Full Code Here

Examples of bak.pcj.map.IntKeyMap.entries()

    }

    public String benchmarkIterator(DataSet dataSet) {
        IntKeyMap c = create(dataSet.get(0), dataSet.getObjects(0));
        startTimer();
        IntKeyMapIterator it = c.entries();
        while (it.hasNext()) {
            it.next();
            it.getKey();
            it.getValue();
        }
View Full Code Here

Examples of bak.pcj.map.ObjectKeyIntOpenHashMap.entries()

            addtoSortedSet(sortedValues, fieldValues, duplicateValues);
          }
         
          SummaryComparator valuesComparator = new SummaryComparator(SortOption.FREQUENCY, Type.STRING, context.getLanguage(), null);
          TreeSet<SummaryComparator.SummaryElement> sortedValuesFrequency = new TreeSet<SummaryComparator.SummaryElement>(valuesComparator);
                    ObjectKeyIntMapIterator entries = duplicateValues.entries();
                   
                    while(entries.hasNext()) {
                        entries.next();
                        sortedValuesFrequency.add(new SummaryComparator.SummaryElement(entries));
                    }
View Full Code Here

Examples of com.atlassian.plugin.util.zip.FileUnzipper.entries()

                .downloadAsAmpsProject();
        assertNotNull(file);
        File unzippedPluginDir = TempHelp.getTempDir("download.jar-project-amps-unzip");
        FileUnzipper unzipper = new FileUnzipper(file, unzippedPluginDir);
        Set<String> entries = new HashSet<String>();
        for (ZipEntry entry : unzipper.entries())
        {
            entries.add(entry.getName());
        }

        unzipper.unzip();
View Full Code Here

Examples of com.avaje.ebeaninternal.server.type.CtCompoundTypeScalarList.entries()

     
      // for each of the scalar types inside a compound value object
      // build a BeanPropertyCompoundScalar with appropriate deployment
      // information.
     
      for (Entry<String, ScalarType<?>> entry : ctMeta.entries()) {

          String relativePropertyName = entry.getKey();
          ScalarType<?> scalarType = entry.getValue();
         
          CtCompoundProperty ctProp = ctMeta.getCompoundType(relativePropertyName);
View Full Code Here

Examples of com.caucho.env.git.GitTree.entries()

      return validateHash(commit.getTree());
    }
    else if (type == GitType.TREE) {
      GitTree tree = readTree(sha1);

      for (GitTree.Entry entry : tree.entries()) {
        if (! validateHash(entry.getSha1())) {
          if (log.isLoggable(Level.FINE))
            log.fine(this + " invalid " + entry);

          return false;
View Full Code Here

Examples of com.caucho.git.GitTree.entries()

      return validateFile(commit.getTree());
    }
    else if (type == GitType.TREE) {
      GitTree tree = readTree(sha1);

      for (GitTree.Entry entry : tree.entries()) {
        if (! validateFile(entry.getSha1())) {
          if (log.isLoggable(Level.FINE))
            log.fine(this + " invalid " + entry);

          return false;
View Full Code Here

Examples of com.ecyrd.jspwiki.auth.acl.Acl.entries()

    {
        Acl acl = page.getAcl();
        boolean pageChanged = false;
        if ( acl != null )
        {
            Enumeration entries = acl.entries();
            Collection<AclEntry> entriesToAdd    = new ArrayList<AclEntry>();
            Collection<AclEntry> entriesToRemove = new ArrayList<AclEntry>();
            while ( entries.hasMoreElements() )
            {
                AclEntry entry = (AclEntry)entries.nextElement();
View Full Code Here

Examples of com.google.common.collect.ListMultimap.entries()

        public String apply(String paramAnonymousString)
        {
          return MediaType.TOKEN_MATCHER.matchesAllOf(paramAnonymousString) ? paramAnonymousString : MediaType.escapeAndQuote(paramAnonymousString);
        }
      });
      PARAMETER_JOINER.appendTo(localStringBuilder, localListMultimap.entries());
    }
    return localStringBuilder.toString();
  }

  private static String escapeAndQuote(String paramString)
View Full Code Here

Examples of com.google.common.collect.Multimap.entries()

    Multimap var16 = this.getAttributeModifiers();

    if (!var16.isEmpty()) {
      var3.add("");
      Iterator var15 = var16.entries().iterator();

      while (var15.hasNext()) {
        Entry var18 = (Entry)var15.next();
        AttributeModifier var21 = (AttributeModifier)var18.getValue();
        double var10 = var21.getAmount();
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.