Polish SpEL chapter

This commit is contained in:
Sam Brannen 2024-02-01 13:57:25 +01:00
parent 80a3c1923f
commit 2367314b52
2 changed files with 13 additions and 13 deletions

View File

@ -34,22 +34,23 @@ populate them are listed at the end of the chapter.
The expression language supports the following functionality:
* Literal expressions
* Boolean, relational, and logical operators
* Regular expressions
* String operators
* Mathematical operators
* Class expressions
* Accessing properties, arrays, lists, and maps
* Method invocation
* Assignment
* Calling constructors
* Bean references
* Array construction
* Inline lists
* Inline maps
* Ternary and Elvis operators
* Array construction
* Relational operators
* Regular expressions
* Logical operators
* String operators
* Mathematical operators
* Assignment
* Type expressions
* Method invocation
* Constructor invocation
* Variables
* User-defined functions
* Bean references
* Ternary, Elvis, and safe-navigation operators
* Collection projection
* Collection selection
* Templated expressions

View File

@ -76,7 +76,6 @@ expression is embedded (such as in an XML document). The textual equivalents are
* `ge` (`>=`)
* `eq` (`==`)
* `ne` (`!=`)
* `not` (`!`)
All of the textual operators are case-insensitive.
@ -182,7 +181,7 @@ wrapper types. For example, `1 instanceof T(int)` evaluates to `false`, while
[[expressions-operators-logical]]
== Logical Operators
SpEL supports the following logical operators:
SpEL supports the following logical (`boolean`) operators:
* `and` (`&&`)
* `or` (`||`)