Package | org.as3coreaddendum.system |
Class | public class StringCase |
Inheritance | StringCase ![]() ![]() |
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 | ||
---|---|---|---|
StringCase(name:String, ordinal:int)
Constructor, creates a new StringCase object. | StringCase | ||
![]() | 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 | ||
---|---|---|---|
INSENSITIVE : StringCase [static]
Defines the constant that indicates that any logic performed against a given String should ignore its case. | StringCase | ||
SENSITIVE : StringCase [static]
Defines the constant that indicates that any logic performed against a given String should consider its case. | StringCase |
StringCase | () | Constructor |
public function StringCase(name:String, ordinal:int)
Constructor, creates a new StringCase
object.
name: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.
|
INSENSITIVE | Constant |
public static const INSENSITIVE:StringCase
Defines the constant that indicates that any logic performed against a given String
should ignore its case.
SENSITIVE | Constant |
public static const SENSITIVE:StringCase
Defines the constant that indicates that any logic performed against a given String
should consider its case.