|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object groovy.lang.GroovyObjectSupport org.codehaus.groovy.runtime.NullObject
public class NullObject extends GroovyObjectSupport
Method Summary | |
---|---|
boolean
|
asBoolean()
A null object always coerces to false. |
java.lang.Object
|
asType(java.lang.Class c)
Type conversion method for null. |
java.lang.Object
|
clone()
Since this is implemented as a singleton, we should avoid the use of the clone method |
boolean
|
equals(java.lang.Object to)
null is only equal to null |
static NullObject
|
getNullObject()
get the NullObject reference |
java.lang.Object
|
getProperty(java.lang.String property)
Tries to get a property on null, which will always fail |
int
|
hashCode()
|
java.lang.Object
|
invokeMethod(java.lang.String name, java.lang.Object args)
Tries to invoke a method on null, which will always fail |
boolean
|
is(java.lang.Object other)
The method "is" is used to test for equal references. |
java.util.Iterator
|
iterator()
iterator() method to be able to iterate on null. |
java.lang.Object
|
plus(java.lang.String s)
Allows to add a String to null. |
java.lang.Object
|
plus(java.lang.Object o)
Fallback for null+null. |
void
|
setProperty(java.lang.String property, java.lang.Object newValue)
Tries to set a property on null, which will always fail |
java.lang.String
|
toString()
|
Methods inherited from class GroovyObjectSupport | |
---|---|
getMetaClass, getProperty, invokeMethod, setMetaClass, setProperty |
Methods inherited from class java.lang.Object | |
---|---|
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Method Detail |
---|
public boolean asBoolean()
public java.lang.Object asType(java.lang.Class c)
c
- - the class to convert to
public java.lang.Object clone()
public boolean equals(java.lang.Object to)
to
- - the reference object with which to compare
public static NullObject getNullObject()
public java.lang.Object getProperty(java.lang.String property)
property
- - the property to get
public int hashCode()
public java.lang.Object invokeMethod(java.lang.String name, java.lang.Object args)
name
- the name of the method to invokeargs
- - arguments to the method
public boolean is(java.lang.Object other)
other
- - the object to test
public java.util.Iterator iterator()
public java.lang.Object plus(java.lang.String s)
s
- - the String to concatenate
public java.lang.Object plus(java.lang.Object o)
o
- - the Object
public void setProperty(java.lang.String property, java.lang.Object newValue)
property
- - the proprty to setnewValue
- - the new value of the property
public java.lang.String toString()
Groovy Documentation