describeType() – DanDev.com http://www.dandev.com Tidbits about software development Mon, 25 May 2009 22:13:02 +0000 en-US hourly 1 Flex: getType() schmettype http://www.dandev.com/2009/03/flex-gettype-schmettype/ http://www.dandev.com/2009/03/flex-gettype-schmettype/#comments Sun, 08 Mar 2009 00:31:54 +0000 http://www.dandev.com/?p=112 I’ve started dabbling in Flex recently, and something that was apparent(and annoying at times) to me  early on was it’s strongly-typed nature. Not type as in a keyboard, but variable […]

The post Flex: getType() schmettype appeared first on DanDev.com.

]]>
I’ve started dabbling in Flex recently, and something that was apparent(and annoying at times) to me  early on was it’s strongly-typed nature. Not type as in a keyboard, but variable types. Flex cares very much whether your variable is an Array, or ArrayCollection as it’s knowledge of types is key to it’s processing. This is quite the converse to a language like PHP, which is loosely-typed to say the least.

Anyway, I came upon a case where I needed to know the type a variable was so I could cast it properly(and for debugging), and I found that Flex doesn’t have a function to simply return a variable’s type. There is describeType(), but this returns an XML object with all of the information about the variable — not just the type. Plus you have to import the proper class to use it. So, I threw together this function quickly that will perform the import, and return/alert the type as needed:

private function getType(value:*, alert:Boolean = false):String
{
	import flash.utils.*;
	var description:XML = describeType(value);
	if(alert)
		Alert.show(description[0].@name);
	return description[0].@name;
}

I hope someone else can find it useful. 🙂

The post Flex: getType() schmettype appeared first on DanDev.com.

]]>
http://www.dandev.com/2009/03/flex-gettype-schmettype/feed/ 9