Examples of values()


Examples of com.basho.riak.client.core.query.indexes.LongIntIndex.values()

       
        assertEquals(index.size(), 2);
        assertTrue(index.hasValue(Long.MIN_VALUE));
        assertTrue(index.hasValue(Long.MAX_VALUE));
       
        Set<Long> longSet2 = index.values();
        assertTrue(longSet.containsAll(longSet2));
       
    }
   
}
View Full Code Here

Examples of com.basho.riak.client.core.query.indexes.RawIndex.values()

            values.add(BinaryValue.unsafeCreate(("value" + i).getBytes()));
        }
       
        index.add(values);
       
        Set<BinaryValue> valueSet = index.values();
       
        for (BinaryValue b : values)
        {
            assertTrue(valueSet.contains(b));
        }
View Full Code Here

Examples of com.basho.riak.client.core.query.indexes.StringBinIndex.values()

       
        assertEquals(index.size(), 2);
        assertTrue(index.hasValue("value1"));
        assertTrue(index.hasValue("value2"));
       
        Set<String> stringSet2 = index.values();
        assertTrue(stringSet.containsAll(stringSet2));
       
    }
}
View Full Code Here

Examples of com.caucho.quercus.env.ArrayValue.values()

    else if (replace instanceof ArrayValue) {
      ArrayValue searchArray = (ArrayValue) search;
      ArrayValue replaceArray = (ArrayValue) replace;

      Iterator<Value> searchIter = searchArray.values().iterator();
      Iterator<Value> replaceIter = replaceArray.values().iterator();

      while (searchIter.hasNext()) {
        Value searchItem = searchIter.next();
        Value replaceItem = replaceIter.next();
View Full Code Here

Examples of com.dooapp.gaedo.finders.repository.ServiceRepository.values()

   * Publish all services infos. Or, to be more precise, all id based servcies infos
   * @param publisher used publisher
   */
  private void publishAllServcies(ServicePublisher publisher) {
    ServiceRepository repository = ((GaedoResourceApplication) getApplication()).getRepository();
    for(FinderCrudService<?, ?> service : repository.values()) {
      if(service instanceof IdBasedService) {
        if(Serializable.class.isAssignableFrom(service.getContainedClass())) {
          publishService(service, publisher);
        } else {
          logger.log(Level.WARNING, "unable to publish service for non serializable class "+service.getContainedClass());
View Full Code Here

Examples of com.dtolabs.rundeck.plugins.util.PropertyBuilder.values()

            StringRenderingConstants.DisplayType renderBehaviour = StringRenderingConstants.DisplayType.SINGLE_LINE;
            //set select/freeselect
            final SelectValues selectAnnotation = field.getAnnotation(SelectValues.class);
            if (null != selectAnnotation) {
                pbuild.type(selectAnnotation.freeSelect() ? Property.Type.FreeSelect : Property.Type.Select);
                pbuild.values(selectAnnotation.values());
            }
           
            if (field.getAnnotation(TextArea.class) != null) {
                renderBehaviour = StringRenderingConstants.DisplayType.MULTI_LINE;
            }
View Full Code Here

Examples of com.ebay.soap.eBLBaseComponents.MerchDisplayCodeType.values()

                    }

                    //CustomListingHeader
                    MerchDisplayCodeType merchDisplayCodeType = returnedStoreType.getMerchDisplay();
                    ebayResp.put("storeMerchDisplay",merchDisplayCodeType.value());
                    MerchDisplayCodeType[] merchDisplayCodeTypeList = merchDisplayCodeType.values();
                    if (merchDisplayCodeTypeList != null) {
                        List<Map<String,Object>> merchDisplayCodeList = FastList.newInstance();
                        int i = 0;
                        while (i < merchDisplayCodeTypeList.length) {
                            Map<String,Object> merchDisplayCodeMap = FastMap.newInstance();
View Full Code Here

Examples of com.ebay.soap.eBLBaseComponents.StoreCustomHeaderLayoutCodeType.values()

                    }

                    ebayResp.put("storeCustomHeader", returnedStoreType.getCustomHeader());
                    StoreCustomHeaderLayoutCodeType storeCustomHeaderLayoutCodeType = returnedStoreType.getCustomHeaderLayout();
                    ebayResp.put("storeCustomHeaderLayout", storeCustomHeaderLayoutCodeType.value());
                    StoreCustomHeaderLayoutCodeType[] storeCustomHeaderLayoutCodeTypeList = storeCustomHeaderLayoutCodeType.values();
                    if (storeCustomHeaderLayoutCodeTypeList != null) {
                        List<Map<String,Object>> storeCustomHeaderLayoutList  = FastList.newInstance();
                        int i = 0;
                        while (i < storeCustomHeaderLayoutCodeTypeList.length) {
                            Map<String,Object> storeCustomHeaderLayoutMap = FastMap.newInstance();
View Full Code Here

Examples of com.ebay.soap.eBLBaseComponents.StoreCustomListingHeaderDisplayCodeType.values()

                        ebayResp.put("isAddToFavoriteStores", storeCustomListingHeaderType.isAddToFavoriteStores());
                        ebayResp.put("isSignUpForStoreNewsletter", storeCustomListingHeaderType.isSignUpForStoreNewsletter());

                        ebayResp.put("storeCustomListingHeaderDisplayName", storeCustomListingHeaderDisplayCodeType.name());
                        ebayResp.put("storeCustomListingHeaderDisplayValue", storeCustomListingHeaderDisplayCodeType.value());
                        StoreCustomListingHeaderDisplayCodeType[] storeCustomListingHeaderDisplayCodeTypeList = storeCustomListingHeaderDisplayCodeType.values();
                        if (storeCustomListingHeaderDisplayCodeTypeList != null) {
                            List<Map<String,Object>> storeCustomListingHeaderDisplayCodeList  = FastList.newInstance();
                            int i = 0;
                            while (i < storeCustomListingHeaderDisplayCodeTypeList.length) {
                                Map<String,Object> storeCustomListingHeaderDisplayCodeMap = FastMap.newInstance();
View Full Code Here

Examples of com.ebay.soap.eBLBaseComponents.StoreHeaderStyleCodeType.values()

                        }
                    }

                    StoreHeaderStyleCodeType storeHeaderStyleCodeType = returnedStoreType.getHeaderStyle();
                    ebayResp.put("storeHeaderStyle", storeHeaderStyleCodeType.value());
                    StoreHeaderStyleCodeType[] storeHeaderStyleCodeList =  storeHeaderStyleCodeType.values();
                    if (storeHeaderStyleCodeList != null) {
                        List<Map<String,Object>> storeHeaderStyleList  = FastList.newInstance();
                        int i=0;
                        while (i<storeHeaderStyleCodeList.length) {
                            Map<String,Object> storeHeaderStyleMap = FastMap.newInstance();
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.