C# Class SGDE.Content.Code.Library.Object

The Object class is at the root of the ActionScript class hierarchy.
ファイルを表示 Open project: sgdc/sgdc-old

Public Methods

Method Description
Object ( ) : System

Creates an Object object and stores a reference to the object's constructor method in the object's constructor property.

hasOwnProperty ( String name ) : Boolean

Indicates whether an object has a specified property defined.

isPrototypeOf ( Object theClass ) : Boolean

Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.

propertyIsEnumerable ( String name ) : Boolean

Indicates whether the specified property exists and is enumerable.

toLocaleString ( ) : String

Returns the string representation of this object, formatted according to locale-specific conventions.

toString ( ) : String

Returns the string representation of the specified object.

valueOf ( ) : Object

Returns the primitive value of the specified object.

Private Methods

Method Description
Object ( bool getConstructor, bool getType ) : System

Method Details

Object() public method

Creates an Object object and stores a reference to the object's constructor method in the object's constructor property.
public Object ( ) : System
return System

hasOwnProperty() public method

Indicates whether an object has a specified property defined.
public hasOwnProperty ( String name ) : Boolean
name String The property of the object.
return Boolean

isPrototypeOf() public method

Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
public isPrototypeOf ( Object theClass ) : Boolean
theClass Object The class to which the specified object may refer.
return Boolean

propertyIsEnumerable() public method

Indicates whether the specified property exists and is enumerable.
public propertyIsEnumerable ( String name ) : Boolean
name String The property of the object.
return Boolean

toLocaleString() public method

Returns the string representation of this object, formatted according to locale-specific conventions.
public toLocaleString ( ) : String
return String

toString() public method

Returns the string representation of the specified object.
public toString ( ) : String
return String

valueOf() public method

Returns the primitive value of the specified object.
public valueOf ( ) : Object
return Object