public class AssignValue extends Object implements Assignment
Expression
to a Column
.
Results in a rendered assignment: <column> = <value>
(e.g. col = 'foo'
.Modifier and Type | Method and Description |
---|---|
static AssignValue |
create(Column target,
Expression value)
|
boolean |
equals(Object obj)
|
Column |
getColumn() |
Expression |
getValue() |
int |
hashCode()
Generate a hash code from this
Segment . |
String |
toString()
Return a SQL string representation of this
Segment . |
void |
visit(Visitor visitor)
|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
public static AssignValue create(Column target, Expression value)
target
- target column, must not be null.value
- assignment value, must not be null.AssignValue
.public Expression getValue()
public String toString()
Segment
Segment
.
The representation is intended for debugging purposes and an approximation to the generated SQL. While it might
work in the context of a specific dialect, you should not that the Segment.toString()
representation works across
multiple databases.public int hashCode()
Segment
Segment
.
Hashcode typically derives from the Segment.toString()
representation so two Segment
s yield the same
Segment.hashCode()
if their Segment.toString()
representation matches.public boolean equals(Object obj)
Segment
Segment
is equal to another Segment
.
Equality is typically given if the Segment.toString()
representation matches.Copyright © 2017–2020 Pivotal Software, Inc.. All rights reserved.