Uses of Class
com.aerospike.client.Value

Packages that use Value
com.aerospike.client   
com.aerospike.client.large   
com.aerospike.client.query   
 

Uses of Value in com.aerospike.client
 

Subclasses of Value in com.aerospike.client
static class Value.BlobValue
          Blob value.
static class Value.ByteSegmentValue
          Byte segment value.
static class Value.BytesValue
          Byte array value.
static class Value.IntegerValue
          Integer value.
static class Value.ListValue
          List value.
static class Value.LongValue
          Long value.
static class Value.MapValue
          Map value.
static class Value.NullValue
          Empty value.
static class Value.StringValue
          String value.
static class Value.ValueArray
          Value array.
 

Fields in com.aerospike.client declared as Value
 Value Operation.binValue
          Optional bin value used in operation.
 Value Bin.value
          Bin value.
 

Methods in com.aerospike.client that return Value
static Value Value.get(byte[] value)
          Get byte array or null value instance.
static Value Value.get(byte[] value, int offset, int length)
          Get byte segment or null value instance.
static Value Value.get(int value)
          Get integer value instance.
static Value Value.get(long value)
          Get long value instance.
static Value Value.get(Object value)
          Determine value given generic object.
static Value Value.get(String value)
          Get string or null value instance.
static Value Value.get(Value[] value)
          Get value array instance.
static Value Value.getAsBlob(Object value)
          Get blob or null value instance.
static Value Value.getAsList(List<?> value)
          Get list or null value instance.
static Value Value.getAsMap(Map<?,?> value)
          Get map or null value instance.
static Value Value.getAsNull()
          Get null value instance.
 

Methods in com.aerospike.client with parameters of type Value
static byte[] Key.computeDigest(String setName, Value key)
          Generate unique server hash value from set name, key type and user defined key.
 Object AerospikeClient.execute(Policy policy, Key key, String packageName, String functionName, Value... args)
          Execute user defined function on server and return results.
 ExecuteTask AerospikeClient.execute(Policy policy, Statement statement, String packageName, String functionName, Value... functionArgs)
          Apply user defined function on records that match the statement filter.
static Value Value.get(Value[] value)
          Get value array instance.
 ResultSet AerospikeClient.queryAggregate(QueryPolicy policy, Statement statement, String packageName, String functionName, Value... functionArgs)
          Execute query, apply statement's aggregation function, and return result iterator.
 

Constructors in com.aerospike.client with parameters of type Value
Bin(String name, Value value)
          Constructor, specifying bin name and value.
Key(String namespace, String setName, Value key)
          Initialize key from namespace, optional set name and user key.
Value.ValueArray(Value[] array)
           
 

Uses of Value in com.aerospike.client.large
 

Methods in com.aerospike.client.large with parameters of type Value
 void LargeList.add(Value... values)
          Add values to the list.
 void LargeSet.add(Value... values)
          Add values to the set.
 void LargeList.add(Value value)
          Add a value to the list.
 void LargeSet.add(Value value)
          Add a value to the set.
 boolean LargeSet.exists(Value value)
          Check existence of value in the set.
 List<?> LargeStack.filter(int peekCount, String filterName, Value... filterArgs)
          Select items from top of stack.
 List<?> LargeList.filter(String filterName, Value... filterArgs)
          Select values from list and apply specified Lua filter.
 Map<?,?> LargeMap.filter(String filterName, Value... filterArgs)
          Select items from map.
 List<?> LargeSet.filter(String filterName, Value... filterArgs)
          Select values from set and apply specified Lua filter.
 List<?> LargeList.find(Value value)
          Select values from list.
 List<?> LargeList.findThenFilter(Value value, String filterName, Value... filterArgs)
          Select values from list and apply specified Lua filter.
 List<?> LargeList.findThenFilter(Value value, String filterName, Value... filterArgs)
          Select values from list and apply specified Lua filter.
 Map<?,?> LargeMap.get(Value name)
          Get value from map given name key.
 Object LargeSet.get(Value value)
          Select value from set.
 void LargeStack.push(Value... values)
          Push values onto stack.
 void LargeStack.push(Value value)
          Push value onto stack.
 void LargeMap.put(Value name, Value value)
          Add entry to map.
 List<?> LargeList.range(Value minValue, Value maxValue)
          Select a range of values from the large list.
 List<?> LargeList.range(Value minValue, Value maxValue, String filterName, Value... filterArgs)
          Select a range of values from the large list, then apply a Lua filter.
 List<?> LargeList.range(Value minValue, Value maxValue, String filterName, Value... filterArgs)
          Select a range of values from the large list, then apply a Lua filter.
 void LargeList.remove(Value value)
          Delete value from list.
 void LargeMap.remove(Value name)
          Remove entry from map.
 void LargeSet.remove(Value value)
          Delete value from set.
 

Uses of Value in com.aerospike.client.query
 

Methods in com.aerospike.client.query that return Value
 Value[] Statement.getFunctionArgs()
          Return aggregation function arguments.
 

Methods in com.aerospike.client.query with parameters of type Value
static Filter Filter.equal(String name, Value value)
          Create equality filter for query.
static Filter Filter.range(String name, Value begin, Value end)
          Create range filter for query.
 



Copyright © 2012–2014 Aerospike, Inc. All rights reserved.