Examples of values()


Examples of com.sleepycat.collections.StoredSortedMap.values()

        StoredSortedMap other = (StoredSortedMap)
            StoredCollections.configuredMap
                (map, CursorConfig.READ_UNCOMMITTED);
        assertTrue(isReadUncommitted(other));
        assertTrue(isReadUncommitted(other.values()));
        assertTrue(isReadUncommitted(other.keySet()));
        assertTrue(isReadUncommitted(other.entrySet()));
        assertTrue(!isReadUncommitted(map));
        assertTrue(!isReadUncommitted(map.values()));
        assertTrue(!isReadUncommitted(map.keySet()));
View Full Code Here

Examples of com.splunk.SavedSearchCollection.values()

        String latestTime = getLatestTime(startTime, false);
        String earliestTime = getEarliestTime(startTime, false);

        Service service = endpoint.getService();
        SavedSearchCollection savedSearches = service.getSavedSearches(queryArgs);
        for (SavedSearch s : savedSearches.values()) {
            if (s.getName().equals(getSavedSearch())) {
                search = s;
                break;
            }
        }
View Full Code Here

Examples of com.splunk.WarmToColdIndexCollection.values()

  private void retryAllIndexesWithShuttlsWarmToColdScriptSet() {
    WarmToColdIndexCollection indexCollection = new WarmToColdIndexCollection(
        service);

    for (WarmToColdIndex index : indexCollection.values())
      if (isWarmToColdScriptConfiguredToBeShuttlsScript(index))
        ColdCopyEntryPoint.createColdBucketCopier().tryCopyingColdBuckets(
            index.getName());
  }
View Full Code Here

Examples of com.sun.appserv.util.cache.BaseCache.values()

    public ReplicationState[] getReplicatedSsoEntriesArray() {
        BaseCache replicatedSSOEntriesCache = getReplicatedSSOEntries();
        ReplicationState[] ssoEntries = null;
        int numberOfIds = replicatedSSOEntriesCache.getEntryCount();
        ArrayList valuesList = new ArrayList(numberOfIds);
        Iterator valuesIter = replicatedSSOEntriesCache.values();
        while(valuesIter.hasNext()) {
            valuesList.add((ReplicationState)valuesIter.next());
        }
        ReplicationState[] template = new ReplicationState[valuesList.size()];
        ssoEntries = (ReplicationState[])valuesList.toArray(template);
View Full Code Here

Examples of com.sun.messaging.jmq.util.PHashMap.values()

      "possible loss of destination data", w);
  }

  // put data in new store
  // migration done when the old data is read in
  Iterator itr = olddata.values().iterator();
  Destination dst = null;
  while (itr.hasNext()) {
      dst = (Destination)itr.next();
      dstMap.put(dst.getDestinationUID().toString(), dst);
  }
View Full Code Here

Examples of com.sun.sgs.app.util.ScalableHashMap.values()

          new TestAbstractKernelRunnable() {
        public void run() throws Exception {
      ScalableHashMap test =
          (ScalableHashMap) dataService.getBinding("test");
      dataService.setBinding("valuesIter",
          new ManagedSerializable(test.values().iterator()));
        }
    }, taskOwner);
      txnScheduler.runTask(
          new TestAbstractKernelRunnable() {
        public void run() throws Exception {
View Full Code Here

Examples of com.tacitknowledge.flip.properties.FeatureDescriptorsMap.values()

        JspWriter writer = null;
        try
        {
            final FeatureDescriptorsMap featureDescriptorsMap = FlipWebContext.getFeatureDescriptors();
            writer = pageContext.getOut();
            for (final FeatureDescriptor featureDescriptor : featureDescriptorsMap.values())
            {
                writer.write(featureDescriptor.getName());
                writer.write(" = ");
                writer.write(featureDescriptor.getState().name().toLowerCase());
                writer.write("<br />");
View Full Code Here

Examples of com.tinkerpop.gremlin.structure.Vertex.values()

        final Vertex v = swg.addVertex("any", "thing");

        assertNotNull(v);
        assertEquals("thing", v.property("any").value());
        assertEquals(3, v.values("anonymous").toList().size());
        assertTrue(v.values("anonymous").toList().contains("working1"));
        assertTrue(v.values("anonymous").toList().contains("working2"));
        assertTrue(v.values("anonymous").toList().contains("working3"));
        assertEquals("anything", v.property("try").value());
    }
View Full Code Here

Examples of com.typesafe.config.ConfigObject.values()

  protected void configure(HttpSecurity http) throws Exception {
    String[] defroles = {"USER", "MOD", "ADMIN"};
    Map<String, String> confMap = Config.getConfigMap();
    ConfigObject c = Config.getConfig().getObject("security.protected");

    for (ConfigValue cv : c.values()) {
      ArrayList<String> patterns = new ArrayList<String>();
      ArrayList<String> roles = new ArrayList<String>();

      for (ConfigValue configValue : (ConfigList) cv) {
        if (configValue instanceof List) {
View Full Code Here

Examples of com.volantis.devrep.device.api.xml.policy.PolicyEntry.values()

        Iterator entries = policySet.entries();
        while (entries.hasNext()) {
            PolicyEntry entry = (PolicyEntry) entries.next();
            Iterator fields = entry.fields();
            Iterator values = entry.values();
            if (fields.hasNext()) {
                // it has fields, so this is a structure entry.
                // NOTE: schema says each field can contain multiple values but
                // this is not used so is not implemented.
                while (fields.hasNext()) {
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.