Examples of keySet()


Examples of com.winvector.util.BurstMap.keySet()

    long rowNum = 0;
    while(source.hasNext()) {
      final BurstMap row = source.next();
      if(first) {
        boolean firstCol = true;
        for(final String ki: row.keySet()) {
          if(firstCol) {
            firstCol = false;
          } else {
            p.print(sep);
          }

Examples of com.zaranux.client.java.util.Properties.keySet()

    final Properties groupProperties = new Properties();
    groupProperties.load(fis, new AsyncCallback<Boolean>()
        {
        public void onSuccess(Boolean b)
        {
          for(Object o : groupProperties.keySet())
          {
            Group g = new Group((String) o);
            String groupRecord = (String) groupProperties.get(o);
            // Display Name : memeber1,memeber2,...
            String[] fields = groupRecord.split(":",2);

Examples of datomic.Entity.keySet()

        // Create the set of facts
        Set<Object> theFacts = new HashSet<Object>();
        // Get the entity
        Entity entity = getDatabase().entity(id);
        // Add the base facts associated with this edge
        Set properties = entity.keySet();
        Iterator<Keyword> propertiesIt = properties.iterator();
        while (propertiesIt.hasNext()) {
            Keyword property = propertiesIt.next();
            // Add all properties (except the ident property (is only originally used for retrieving the id of the created elements)
            if (!property.toString().equals(":db/ident")) {

Examples of de.anomic.data.ymark.YMarkCrawlStart.keySet()

              } else if(isURLdb) {
            count = putMeta(count, meta.getMetadata());
              } else if(isCrawlStart) {
                Log.logInfo("YMark", "I am looking for CrawlStart: "+post.get(ROOT).substring(2));
                final YMarkCrawlStart crawlStart = new YMarkCrawlStart(sb.tables, post.get(ROOT).substring(2));
                final Iterator<String> iter = crawlStart.keySet().iterator();
                String key;
                while(iter.hasNext()) {
                  key = iter.next();
                  prop.put("folders_"+count+"_foldername","<small><b>"+key.toLowerCase()+":</b> " + crawlStart.get(key) + "</small>");
                  putProp(count, "meta");

Examples of de.danet.an.util.SegmentedMap.keySet()

 
  ResourceBundle bundle
      = ResourceBundle.getBundle("util.I18nTest", Locale.GERMANY);
  ResourceBundleAsMap rbm = new ResourceBundleAsMap(bundle);
  SegmentedMap segmap = new SegmentedMap(rbm);
  Set myKeySet = segmap.keySet("danet.oss");
  int i = 0;
  assertTrue(myKeySet.containsAll(resultList));
  i = myKeySet.size();
  // Verfiy that all entries have been found
  assertTrue(i==resultKeys.length);

Examples of de.danet.an.workflow.omgcore.ProcessData.keySet()

  assertTrue(dae.oldData().isEmpty());
  ProcessData newData = dae.newData();
  assertTrue("Size should be 3, is " + newData.size(),
       newData.size()==3);
  assertTrue(newData.keySet().contains("status"));
  String data = (String)(newData.get("status"));
  assertTrue(data == null);
  assertTrue(newData.keySet().contains("testData"));
  data = (String)(newData.get("testData"));
  assertTrue(data.equals("relevante Process Test Daten"));

Examples of de.danet.an.workflow.omgcore.ProcessDataInfo.keySet()

      = pdd.lookupProcessDefinition("ut-procdef", "called1");
  assertTrue (pd != null);
  assertTrue (pd.processHeader().created().equals ("07.04.2003"));
  assertTrue (pd.processHeader().description().equals ("Was tun"));
  ProcessDataInfo pdi = pd.resultSignature();
  assertTrue (pdi.keySet().size () == 1);
  assertTrue (pdi.containsKey("status"));
  assertTrue (pdi.get("status") == String.class);
    }

    /**
 

Examples of de.reuse.GroupMap.keySet()

    protected GroupMap getView_FIDMap() {
        if (view_IDMap == null) return null;

        GroupMap gm = view_IDMap.getView_IDMap();

        Iterator keyIterator = gm.keySet().iterator();

        while (keyIterator != null && keyIterator.hasNext()) {
            String key = (String) keyIterator.next();
            Iterator idIterator = gm.get(key).iterator();

Examples of de.sciss.meloncillo.util.MapManager.keySet()

    keys.clear();
    contexts.clear();
    if( !collObjects.isEmpty() ) {
      so  = (SessionObject) collObjects.get( 0 );
      map  = so.getMap();
      keys.addAll( map.keySet( MapManager.Context.FLAG_OBSERVER_DISPLAY,
                   MapManager.Context.NONE_EXCLUSIVE ));

      for( int i = keys.size() - 1; i >= 0 ; i-- ) {
        o  = keys.get( i );
        c  = map.getContext( o.toString() );

Examples of de.t68.utils.keyboard.LanguageMap.keySet()

        KeyboardLayout layout = map.getKeyboardLayoutForLocale("th", "TH");
        final VKeyboard v = new VKeyboard(layout, tb);
        JPanel panel = new JPanel(new BorderLayout());
        panel.add(v.getKeyPanel(), BorderLayout.CENTER);
        final JComboBox<String> comboBox = new JComboBox<>(new Vector<>(map.keySet()));
        comboBox.setFocusable(false);
        JPanel boxPanel = new JPanel(new FlowLayout());
        boxPanel.setBorder(BorderFactory.createEmptyBorder(5, 10, 5, 20));
        boxPanel.add(comboBox);
        panel.add(boxPanel, BorderLayout.NORTH);
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.