String
Standard Bindings
A string provides the following standard bindings:
returns | service | description |
String | this + aForm | Concatenate. Returns the concatenation from this and asString(aForm). |
Number | this.size() | Returns the number of characters of this string. |
Boolean | this < aString | Smaller. Returns true if this is smaller than aString, false otherwise. |
Boolean | this > aString | Greater. Returns true if this is greater than aString, false otherwise. |
Boolean | this <= aString | Smaller or Equal. Returns true if this is smaller than or equal to aString, false otherwise. |
Boolean | this >= aString | Greater or Equal. Returns true if this is greater than or equal to aString, false otherwise. |
Boolean | this == aString | Equal. Returns true if this equal to aString, false otherwise. |
Boolean | this != aString | Not Equal. Returns true if this is not equal to aString, false otherwise. |
JPiccola
In JPiccola, a string additionally provides the following bindings:
Class | this.getClass() | Returns the class of this. |