Package org.apache.accumulo.core.data
Interface Mutation.MutationOptions
-
- All Known Subinterfaces:
Mutation.FamilyOptions,Mutation.QualifierOptions,Mutation.TimestampOptions,Mutation.VisibilityOptions
- Enclosing class:
- Mutation
public static interface Mutation.MutationOptionsProvides methods for setting the value of a Mutation. The user can provide the value as a byte array, Value, or ByteBuffer object instance and the backend will do the necessary transformation.All MutationOptions methods complete a fluent Mutation API method chain.
- Since:
- 2.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Mutationdelete()Mutationput(byte[] val)Mutationput(CharSequence val)Mutationput(ByteBuffer val)Mutationput(Value val)Mutationput(org.apache.hadoop.io.Text val)
-
-
-
Method Detail
-
put
Mutation put(byte[] val)
-
put
Mutation put(ByteBuffer val)
-
put
Mutation put(CharSequence val)
-
put
Mutation put(org.apache.hadoop.io.Text val)
-
delete
Mutation delete()
-
-