public final class Mutation extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
Mutation.Mutator
Mutator must be "+=", "-=", "*=", "/=", or (integer only) "%=".
|
| Constructor and Description |
|---|
Mutation(String column,
Mutation.Mutator mutator,
Object value)
Mutation constructor.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
String |
getColumn()
Returns column name.
|
Mutation.Mutator |
getMutator()
Returns Mutator.
|
Object |
getValue()
Returns column data.
|
int |
hashCode() |
String |
toString() |
public Mutation(String column, Mutation.Mutator mutator, Object value)
column - the column namemutator - Mutatorvalue - column datapublic String getColumn()
public Mutation.Mutator getMutator()
public Object getValue()