Uses of Class
com.aerospike.client.Value

Packages that use Value
com.aerospike.client   
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.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(int value)
          Get integer value instance.
static Value Value.get(long value)
          Get long value instance.
static Value Value.get(java.lang.Object value)
          Determine value given generic object.
static Value Value.get(java.lang.String value)
          Get string or null value instance.
static Value Value.get(Value[] value)
          Get value array instance.
static Value Value.getAsBlob(java.lang.Object value)
          Get blob or null value instance.
static Value Value.getAsList(java.util.List<?> value)
          Get list or null value instance.
static Value Value.getAsMap(java.util.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(java.lang.String setName, Value key)
          Generate unique server hash value from set name, key type and user defined key.
 void LargeSet.delete(Value value)
          Delete value from list.
 java.lang.Object AerospikeClient.execute(Policy policy, Key key, java.lang.String packageName, java.lang.String functionName, Value... args)
          Execute user defined function on server and return results.
static Value Value.get(Value[] value)
          Get value array instance.
 void LargeSet.insert(java.lang.String configName, Value value)
          Insert value into list.
 void LargeSet.insert(Value value)
          Insert value into list.
 java.util.List<?> LargeStack.peek(int peekCount, java.lang.String filterName, Value... filterArgs)
          Select items from top of stack.
 void LargeStack.push(java.lang.String configName, Value value)
          Push value onto stack.
 void LargeStack.push(Value value)
          Push value onto stack.
 ResultSet AerospikeClient.queryAggregate(QueryPolicy policy, Statement statement, java.lang.String packageName, java.lang.String functionName, Value... functionArgs)
          Execute query, apply statement's aggregation function, and return result iterator.
 java.util.List<?> LargeSet.search(Value value)
          Select value from list.
 java.util.List<?> LargeSet.search(Value value, java.lang.String filterName, Value... filterArgs)
          Select value from list and apply specified Lua filter.
 java.util.List<?> LargeSet.search(Value value, java.lang.String filterName, Value... filterArgs)
          Select value from list and apply specified Lua filter.
 

Constructors in com.aerospike.client with parameters of type Value
Bin(java.lang.String name, Value value)
          Constructor, specifying bin name and value.
Key(java.lang.String namespace, java.lang.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.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(java.lang.String name, Value value)
          Create single filter for query.
static Filter Filter.range(java.lang.String name, Value begin, Value end)
          Create range filter for query.