How To Handle NULL Values In Object Oriented Programming In ColdFusion

<!--- Create the component. --->
<cfset objProperty = CreateObject( "component", "Property" ) />
 
<!---
	Set the property to be a NULL value. We are explicitly
	setting a NULL value here, but this could just as easily
	have been a NULL value coming out of a query.
--->
<cfset objProperty.Set(
	JavaCast( "null", 0 )
	) />
 
<!--- Get the value back out of the property. --->
<cfset strValue = objProperty.Get() />

For Cut-and-Paste