if (obj instanceof ProducerMethodIdentifier) {
ProducerMethodIdentifier that = (ProducerMethodIdentifier) obj;
return this.typeIdentifier.equals(that.typeIdentifier) && this.memberIndex == that.memberIndex;
}
BeanIdentifier that = (BeanIdentifier) obj;
return this.asString().equals(that.asString());
}
return false;
}
}