Package com.trifork.riak.RPB

Examples of com.trifork.riak.RPB.RpbPair


    if (content.getUsermetaCount() == 0) {
      userMeta = Collections.emptyMap();
    } else {
      userMeta = new HashMap<String, String>();
      for (int i = 0; i < content.getUsermetaCount(); i++) {
        RpbPair um = content.getUsermeta(i);
        userMeta.put(um.getKey().toStringUtf8(),
               str(um.getValue()));
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.trifork.riak.RPB.RpbPair

Copyright © 2018 www.massapicom. 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.