Package com.basho.riak.client.core.util

Examples of com.basho.riak.client.core.util.BinaryValue


    {
    }

    public MapUpdate removeCounter(String key)
    {
        BinaryValue k = BinaryValue.create(key);
        removes.add(new MapOp.MapField(MapOp.FieldType.COUNTER, k));
        return this;
    }
View Full Code Here


        return this;
    }

    public MapUpdate removeRegister(String key)
    {
        BinaryValue k = BinaryValue.create(key);
        removes.add(new MapOp.MapField(MapOp.FieldType.REGISTER, k));
        return this;
    }
View Full Code Here

        return this;
    }

    public MapUpdate removeFlag(String key)
    {
        BinaryValue k = BinaryValue.create(key);
        removes.add(new MapOp.MapField(MapOp.FieldType.FLAG, k));
        return this;
    }
View Full Code Here

        return this;
    }

    public MapUpdate removeSet(String key)
    {
        BinaryValue k = BinaryValue.create(key);
        removes.add(new MapOp.MapField(MapOp.FieldType.SET, k));
        return this;
    }
View Full Code Here

        return this;
    }

    public MapUpdate removeMap(String key)
    {
        BinaryValue k = BinaryValue.create(key);
        removes.add(new MapOp.MapField(MapOp.FieldType.MAP, k));
        return this;
    }
View Full Code Here

        return this;
    }

    public MapUpdate add(String key, MapUpdate builder)
    {
        BinaryValue k = BinaryValue.create(key);
        return update(key, builder);
    }
View Full Code Here

        return update(key, builder);
    }

    public MapUpdate add(String key, SetUpdate builder)
    {
        BinaryValue k = BinaryValue.create(key);
        return update(key, builder);
    }
View Full Code Here

        return update(key, builder);
    }

    public MapUpdate add(String key, CounterUpdate builder)
    {
        BinaryValue k = BinaryValue.create(key);
        return update(key, builder);
    }
View Full Code Here

        }

        @Override
        public Namespace next()
        {
            BinaryValue bucket = iterator.next();
            return new Namespace(type, bucket);
        }
View Full Code Here

        return update(key, builder);
    }

    public MapUpdate add(String key, RegisterUpdate builder)
    {
        BinaryValue k = BinaryValue.create(key);
        return update(key, builder);
    }
View Full Code Here

TOP

Related Classes of com.basho.riak.client.core.util.BinaryValue

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.