in jena-tdb2/src/main/java/org/apache/jena/tdb2/params/StoreParams.java [468:572]
public boolean equals(Object obj) {
if ( this == obj )
return true;
if ( obj == null )
return false;
if ( getClass() != obj.getClass() )
return false;
StoreParams other = (StoreParams)obj;
if ( Node2NodeIdCacheSize == null ) {
if ( other.Node2NodeIdCacheSize != null )
return false;
} else if ( !Node2NodeIdCacheSize.equals(other.Node2NodeIdCacheSize) )
return false;
if ( NodeId2NodeCacheSize == null ) {
if ( other.NodeId2NodeCacheSize != null )
return false;
} else if ( !NodeId2NodeCacheSize.equals(other.NodeId2NodeCacheSize) )
return false;
if ( NodeMissCacheSize == null ) {
if ( other.NodeMissCacheSize != null )
return false;
} else if ( !NodeMissCacheSize.equals(other.NodeMissCacheSize) )
return false;
if ( prefixNode2NodeIdCacheSize == null ) {
if ( other.prefixNode2NodeIdCacheSize != null )
return false;
} else if ( !prefixNode2NodeIdCacheSize.equals(other.prefixNode2NodeIdCacheSize) )
return false;
if ( prefixNodeId2NodeCacheSize == null ) {
if ( other.prefixNodeId2NodeCacheSize != null )
return false;
} else if ( !prefixNodeId2NodeCacheSize.equals(other.prefixNodeId2NodeCacheSize) )
return false;
if ( prefixNodeMissCacheSize == null ) {
if ( other.prefixNodeMissCacheSize != null )
return false;
} else if ( !prefixNodeMissCacheSize.equals(other.prefixNodeMissCacheSize) )
return false;
if ( nodeCacheInitialCapacityFactor == null ) {
if ( other.nodeCacheInitialCapacityFactor != null )
return false;
} else if ( !nodeCacheInitialCapacityFactor.equals(other.nodeCacheInitialCapacityFactor) )
return false;
if ( blockReadCacheSize == null ) {
if ( other.blockReadCacheSize != null )
return false;
} else if ( !blockReadCacheSize.equals(other.blockReadCacheSize) )
return false;
if ( blockSize == null ) {
if ( other.blockSize != null )
return false;
} else if ( !blockSize.equals(other.blockSize) )
return false;
if ( blockWriteCacheSize == null ) {
if ( other.blockWriteCacheSize != null )
return false;
} else if ( !blockWriteCacheSize.equals(other.blockWriteCacheSize) )
return false;
if ( fileMode == null ) {
if ( other.fileMode != null )
return false;
} else if ( !fileMode.equals(other.fileMode) )
return false;
if ( nodeTableBaseName == null ) {
if ( other.nodeTableBaseName != null )
return false;
} else if ( !nodeTableBaseName.equals(other.nodeTableBaseName) )
return false;
if ( prefixTableBaseName == null ) {
if ( other.prefixTableBaseName != null )
return false;
} else if ( !prefixTableBaseName.equals(other.prefixTableBaseName) )
return false;
if ( prefixIndexes == null ) {
if ( other.prefixIndexes != null )
return false;
} else if ( !prefixIndexes.equals(other.prefixIndexes) )
return false;
if ( primaryIndexPrefix == null ) {
if ( other.primaryIndexPrefix != null )
return false;
} else if ( !primaryIndexPrefix.equals(other.primaryIndexPrefix) )
return false;
if ( primaryIndexQuads == null ) {
if ( other.primaryIndexQuads != null )
return false;
} else if ( !primaryIndexQuads.equals(other.primaryIndexQuads) )
return false;
if ( primaryIndexTriples == null ) {
if ( other.primaryIndexTriples != null )
return false;
} else if ( !primaryIndexTriples.equals(other.primaryIndexTriples) )
return false;
if ( quadIndexes == null ) {
if ( other.quadIndexes != null )
return false;
} else if ( !quadIndexes.equals(other.quadIndexes) )
return false;
if ( tripleIndexes == null ) {
if ( other.tripleIndexes != null )
return false;
} else if ( !tripleIndexes.equals(other.tripleIndexes) )
return false;
return true;
}