public final class org.apache.commons.collections.functors.NullPredicate extends java.lang.Object implements org.apache.commons.collections.Predicate, java.io.Serializable
{
private static final long serialVersionUID;
public static final org.apache.commons.collections.Predicate INSTANCE;
public static org.apache.commons.collections.Predicate nullPredicate()
{
org.apache.commons.collections.Predicate v;
v = <org.apache.commons.collections.functors.NullPredicate: org.apache.commons.collections.Predicate INSTANCE>;
return v;
}
private void <init>()
{
org.apache.commons.collections.functors.NullPredicate v;
v := @this: org.apache.commons.collections.functors.NullPredicate;
specialinvoke v.<java.lang.Object: void <init>()>();
return;
}
public boolean evaluate(java.lang.Object)
{
java.lang.Object v;
org.apache.commons.collections.functors.NullPredicate v;
boolean v;
v := @this: org.apache.commons.collections.functors.NullPredicate;
v := @parameter: java.lang.Object;
if v != null goto label;
v = 1;
goto label;
label:
v = 0;
label:
return v;
}
private java.lang.Object readResolve()
{
org.apache.commons.collections.functors.NullPredicate v;
org.apache.commons.collections.Predicate v;
v := @this: org.apache.commons.collections.functors.NullPredicate;
v = <org.apache.commons.collections.functors.NullPredicate: org.apache.commons.collections.Predicate INSTANCE>;
return v;
}
static void <clinit>()
{
org.apache.commons.collections.functors.NullPredicate v;
v = new org.apache.commons.collections.functors.NullPredicate;
specialinvoke v.<org.apache.commons.collections.functors.NullPredicate: void <init>()>();
<org.apache.commons.collections.functors.NullPredicate: org.apache.commons.collections.Predicate INSTANCE> = v;
return;
}
}