Class When
java.lang.Object
org.springframework.data.relational.core.sql.When
When segment for Case statement.
Results in a rendered condition: WHEN <condition> THEN <value>.
- Since:
- 3.4
- Author:
- Sven Rienstra
-
Method Details
-
when
- Parameters:
condition- the conditionExpression.value- theLiteralvalue.- Returns:
- the
When.
-
getCondition
- Returns:
- the condition
-
getValue
- Returns:
- the value
-
toString
Description copied from interface:SegmentReturn a SQL string representation of thisSegment.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 assume that the
Segment.toString()representation works across multiple databases. -
visit
-
hashCode
public int hashCode()Description copied from interface:SegmentGenerate a hash code from thisSegment.Hashcode typically derives from the
Segment.toString()representation so twoSegments yield the sameSegment.hashCode()if theirSegment.toString()representation matches. -
equals
Description copied from interface:SegmentCheck whether thisSegmentis equal to anotherSegment.Equality is typically given if the
Segment.toString()representation matches.
-