Groovy Documentation

org.codenarc.util
[Groovy] Class PropertyUtil

java.lang.Object
  org.codenarc.util.PropertyUtil

class PropertyUtil

Contains property-related static utility methods

Authors:
Chris Mair
Version:
\$Revision: 601 \$ - \$Date: 2011-02-08 15:33:54 -0500 (Tue, 08 Feb 2011) \$


Method Summary
static void setPropertyFromString(Object object, String propertyName, String propertyValue)

Set the value of the named property on the specified Object from a String value.

 
Methods inherited from class Object
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll
 

Method Detail

setPropertyFromString

static void setPropertyFromString(Object object, String propertyName, String propertyValue)
Set the value of the named property on the specified Object from a String value. If the name specifies an int, long or boolean value then trim and parse the provided String value and convert to the appropriate type.
throws:
NoSuchFieldException - if the object does not contain the named field
Parameters:
object - - the Object whose field should be set
name - - the property name to set
value - - the property value as a String


 

Groovy Documentation