HBool class

HBool defines singletons for true/false tag values.

See Project Haystack

Inheritance

Constructors

HBool(bool val)
Factory Constructor from boolean value
factory

Properties

hashCode int
Hash code is same as java.lang.Boolean
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
val bool
Boolean value
final

Methods

compareTo(Object that) int
Returns sort order as negative, 0, or positive.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() String
Raise UnsupportedOperationException
override
toString() String
Encodes as "true" or "false"
override
toZinc() String
Encodes as "T" or "F"
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

FALSE HBool
Singleton value for false
final
TRUE HBool
Singleton value for true
final