Package | org.as3coreaddendum.system.comparators |
Class | public class BooleanComparison |
Inheritance | BooleanComparison ![]() ![]() |
BooleanComparator
.
This is a type-safe enumeration class, which means there is no possibility of creating instances externally. All acceptable values will be created automaticaly by this class internaly, through its constants.
Method | Defined By | ||
---|---|---|---|
BooleanComparison(name:String, ordinal:int)
Constructor, creates a new BooleanComparison object. | BooleanComparison | ||
![]() | compareTo(o:*):int
Compares this enum with the specified object for order. | Enum | |
![]() | equals(other:*):Boolean
Compares the target object for equality with this object. | Enum | |
![]() | toSource():String
Returns the source code String representation of the object. | Enum | |
![]() | toString():String
Returns the name of this enum constant, as contained in the declaration. | Enum | |
![]() | valueOf():int
Returns the primitive value of the object. | Enum |
Constant | Defined By | ||
---|---|---|---|
FALSE_FIRST : BooleanComparison [static]
Defines the constant which indicates that the comparison should return false first. | BooleanComparison | ||
TRUE_FIRST : BooleanComparison [static]
Defines the constant which indicates that the comparison should return true first. | BooleanComparison |
BooleanComparison | () | Constructor |
public function BooleanComparison(name:String, ordinal:int)
Constructor, creates a new BooleanComparison object.
Parametersname:String — The name of this enumeration constant.
| |
ordinal:int — The ordinal of this enumeration constant, that is its position in the enum declaration (where the initial constant is assigned an ordinal of zero).
|
IllegalOperationError — If there is an attempt to instantiation outside the internal code of this class. All acceptable values will be created automaticaly by this class internaly, through the constants. There's no possibility to use this constructor externally.
|
FALSE_FIRST | Constant |
public static const FALSE_FIRST:BooleanComparison
Defines the constant which indicates that the comparison should return false
first.
TRUE_FIRST | Constant |
public static const TRUE_FIRST:BooleanComparison
Defines the constant which indicates that the comparison should return true
first.