| java.lang.Object org.mandarax.lib.LibObject
All known Subclasses: org.mandarax.lib.AbstractFunction, org.mandarax.lib.AbstractPredicate,
LibObject | abstract public class LibObject (Code) | | Abstract super class mandarax lib predicates and functions.
Equals and hashCode are defined here: all instamnces of a class are considered equal,
usually only one instance per class should exist. However, when deserializing
functions/mandarax, multiple instances might exist and will be considered equal.
author: Jens Dietrich version: 3.4 <7 March 05> since: 1.9.1 |
Method Summary | |
public boolean | equals(Object obj) Compare objects. | public int | hashCode() Get the hashcode for the respective object. | public static boolean | isLibPredicate(Predicate p) Indicates whether a predicate is a predicate from the lib. |
equals | public boolean equals(Object obj)(Code) | | Compare objects.
Parameters: obj - another object a boolean |
hashCode | public int hashCode()(Code) | | Get the hashcode for the respective object.
an integer |
isLibPredicate | public static boolean isLibPredicate(Predicate p)(Code) | | Indicates whether a predicate is a predicate from the lib.
Parameters: p - a predicate a boolean |
|
|