The lexical constants true and false evaluate to a value of type
Logical. Expressions containing operators that compare values (for
example equal or less than) also evaluate to a logical. Logical
expressions can be combined with logical "and" and logical "or"
operators, and are evaluated in a short-circuited fashion.
Boolean Expressions
Expression Value Value Type
-------------- ----- ----------
true true Logical
false false Logical
true or false true Logical
true and false false Logical
1 = 1 true Logical
1 <= 1 true Logical
1 != 1 false Logical
Methods inherited from: Concept
cloneConcept, extendsConcept, fromXML, getAllInheritedConcepts, getConceptAttribute, getConceptAttributeField, getConceptAttributeFields, getConceptAttributes, getConceptConstructors, getConceptElement, getConceptElementField, getConceptElementFields, getConceptElements, getConceptLabel, getConceptMethod, getConceptMethods, getConceptOperators, getConceptType, getErrorHandler, getInheritedConcepts, getResourceURI, hasConceptAttribute, hasConceptElement, hasConceptMethod, hasPath, isHidden, loadContent, setConceptLabel, setErrorHandler, setHidden, setShowEmpty, showEmpty, toTXT, toXML, setResourceURI |
|
Parameters: |
$logical : | Logical with which will be make the or operation |
|
Executes the or operation with the logical given as parameter and this
concept value and returns the result.
Parameters: |
$logical : | Logical with which will be make the and operation |
|
Executes the and operation with the logical given as parameter and this
concept value and returns the result.
Returns the negated value of this concept.
Parameters: |
: | To this logical will be compared this concept value. |
|
Returns true if this concept value equals with the parameters value,
false otherwise.