equals() — netty Function Reference
Architecture documentation for the equals() function in XmlDocumentStart.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 8ecec8dd_9b86_7be4_c4a3_f99df7468264["equals()"] a6c02c90_88ed_de88_8d95_2ef79bc17639["XmlDocumentStart"] 8ecec8dd_9b86_7be4_c4a3_f99df7468264 -->|defined in| a6c02c90_88ed_de88_8d95_2ef79bc17639 style 8ecec8dd_9b86_7be4_c4a3_f99df7468264 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-xml/src/main/java/io/netty/handler/codec/xml/XmlDocumentStart.java lines 55–80
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
XmlDocumentStart that = (XmlDocumentStart) o;
if (standalone != that.standalone) {
return false;
}
if (encoding != null ? !encoding.equals(that.encoding) : that.encoding != null) {
return false;
}
if (encodingScheme != null ? !encodingScheme.equals(that.encodingScheme) : that.encodingScheme != null) {
return false;
}
if (version != null ? !version.equals(that.version) : that.version != null) {
return false;
}
return true;
}
Domain
Subdomains
Source
Frequently Asked Questions
What does equals() do?
equals() is a function in the netty codebase, defined in codec-xml/src/main/java/io/netty/handler/codec/xml/XmlDocumentStart.java.
Where is equals() defined?
equals() is defined in codec-xml/src/main/java/io/netty/handler/codec/xml/XmlDocumentStart.java at line 55.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free