Browse Source

Polish SpEL chapter

pull/32183/head
Sam Brannen 2 years ago
parent
commit
2367314b52
  1. 21
      framework-docs/modules/ROOT/pages/core/expressions.adoc
  2. 3
      framework-docs/modules/ROOT/pages/core/expressions/language-ref/operators.adoc

21
framework-docs/modules/ROOT/pages/core/expressions.adoc

@ -34,22 +34,23 @@ populate them are listed at the end of the chapter. @@ -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
* Accessing properties, arrays, lists, and maps
* Inline lists
* Inline maps
* Array construction
* Relational operators
* Regular expressions
* Logical operators
* 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
* Type expressions
* Method invocation
* Constructor invocation
* Variables
* User-defined functions
* Bean references
* Ternary, Elvis, and safe-navigation operators
* Collection projection
* Collection selection
* Templated expressions

3
framework-docs/modules/ROOT/pages/core/expressions/language-ref/operators.adoc

@ -76,7 +76,6 @@ expression is embedded (such as in an XML document). The textual equivalents are @@ -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 @@ -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` (`||`)

Loading…
Cancel
Save