Package com.aerospike.client

Examples of com.aerospike.client.Value


   * @param name      bin name
   * @param value      filter value
   * @return        filter instance
   */
  public static Filter equal(String name, String value) {
    Value val = Value.get(value);
    return new Filter(name, val, val);
  }
View Full Code Here

TOP

Related Classes of com.aerospike.client.Value

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.