Examples of keySet()


Examples of com.hazelcast.multimap.impl.MultiMapContainer.keySet()

    }

    public void run() throws Exception {
        MultiMapContainer container = getOrCreateContainer();
        ((MultiMapService) getService()).getLocalMultiMapStatsImpl(name).incrementOtherOperations();
        response = new MultiMapResponse(container.keySet(), getValueCollectionType(container));
    }

    public int getId() {
        return MultiMapDataSerializerHook.KEY_SET;
    }

Examples of com.hazelcast.replicatedmap.impl.record.ReplicatedRecordStore.keySet()

    @Override
    public Object call()
            throws Exception {
        ReplicatedRecordStore recordStore = getReplicatedRecordStore();
        return new ReplicatedMapKeySet(recordStore.keySet());
    }

    @Override
    public int getClassId() {
        return ReplicatedMapPortableHook.KEY_SET;

Examples of com.hazelcast.replicatedmap.record.ReplicatedRecordStore.keySet()

    @Override
    public Object call()
            throws Exception {
        ReplicatedRecordStore recordStore = getReplicatedRecordStore();
        return new ReplicatedMapKeySet(recordStore.keySet());
    }

    @Override
    public int getClassId() {
        return ReplicatedMapPortableHook.KEY_SET;

Examples of com.ibm.icu.util.UResourceBundle.keySet()

  @Override
  public synchronized Set<String> getAvailableMetaZoneIDs() {
    if (METAZONE_IDS == null) {
      UResourceBundle bundle = UResourceBundle.getBundleInstance(ICUResourceBundle.ICU_BASE_NAME, "metaZones");
      UResourceBundle mapTimezones = bundle.get("mapTimezones");
      Set<String> keys = mapTimezones.keySet();
      METAZONE_IDS = Collections.unmodifiableSet(keys);
    }
    return METAZONE_IDS;
  }

Examples of com.jetdrone.vertx.yoke.core.Context.keySet()

        }};

        Context ctx = new Context(ro);
        ctx.put("title", "rw-title");

        Set<String> keys = ctx.keySet();
        Set<String> expectedKeys = new HashSet<String>() {{
            add("title");
        }};

        assertEquals(expectedKeys, keys);

Examples of com.jme3.material.MaterialList.keySet()

    //spool all materials
    for (File name : fList) {
      try {
       
        MaterialList mats = (MaterialList) assetMan.loadAsset(name.getAbsolutePath());
        for(String id : mats.keySet()){
          Material m = mats.get(id);
          m.setName(id);
          String ass = "mats/"+file.getName()+"/"+id+ ".j3o";
//          m.setAssetName(ass);
        BinaryExporter.getInstance().save(m,

Examples of com.l2jfrozen.L2Properties.keySet()

      xmlServer.setHandlerMapping(phm);
      int numServices = 0;
      try
      {
        L2Properties p = new L2Properties("config/powerpak/xmlrpc.service");
        for(Object s : p.keySet())
        {
          String service = p.getProperty(s.toString());
          Class<?> clazz = Class.forName(service);
          if(clazz != null)
          {

Examples of com.linkedin.data.DataMap.keySet()

    }
    if (i == _path.size())
    {
      if (i >= _patchedPath.length)
      {
        for (String keys : currentOpMap.keySet())
        {
          if (keys.startsWith(PatchConstants.COMMAND_PREFIX))
          {
            status = Status.IS_CHILD_MODIFIED;
            break;

Examples of com.linkedin.restli.internal.common.PathSegment.ListMap.keySet()

    if (map instanceof ListMap)
    {
      DataList result = new DataList();
      ListMap listMap = (ListMap)map;

      List<Integer> sortedKeys = new ArrayList<Integer>(listMap.keySet());
      Collections.sort(sortedKeys);

      for (Integer key : sortedKeys)
      {
        Object object = map.get(key);

Examples of com.massivecraft.mcore.xlib.mongodb.DBObject.keySet()

            boolean first = true;
            buf.append("{ ");
            DBObject dbo = (DBObject) obj;
            String name;

            for (final String s : dbo.keySet()) {
                name = s;

                if (first)
                    first = false;
                else
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.