org.apache.log4j
class: CategoryKey [javadoc |
source]
java.lang.Object
org.apache.log4j.CategoryKey
CategoryKey is a wrapper for String that apparently accellerated
hash table lookup in early JVM's.
| Field Summary |
|---|
| String | name | |
| int | hashCache | |
| Method from org.apache.log4j.CategoryKey Detail: |
public final boolean equals(Object rArg) {
if(this == rArg)
return true;
if(rArg != null && CategoryKey.class == rArg.getClass())
return name.equals(((CategoryKey)rArg ).name);
else
return false;
}
|
public final int hashCode() {
return hashCache;
}
|