blob: 2cbd2d78bcaa40e83ed21941ad1a8f50daca81da [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.server.core.partition.impl.btree;
import java.io.Serializable;
import org.apache.directory.server.schema.SerializableComparator;
/**
* A TupleComparator that compares keys only.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$
*/
public class KeyOnlyComparator implements TupleComparator, Serializable
{
private static final long serialVersionUID = 3544956549803161397L;
private SerializableComparator keyComparator = null;
public KeyOnlyComparator(SerializableComparator comparator)
{
keyComparator = comparator;
}
/**
* Gets the comparator used to compare keys. May be null in which
* case the compareKey method will throw an UnsupportedOperationException.
*
* @return the comparator for comparing keys.
*/
public SerializableComparator getKeyComparator()
{
return keyComparator;
}
/**
* Will throw an UnsupportedOperationException every time.
*/
public SerializableComparator getValueComparator()
{
throw new UnsupportedOperationException();
}
/**
* Compares key Object to determine their sorting order returning a
* value = to, < or > than 0.
*
* @param key1 the first key to compare
* @param key2 the other key to compare to the first
* @return 0 if both are equal, a negative value less than 0 if the first
* is less than the second, or a postive value if the first is greater than
* the second byte array.
*/
public int compareKey( Object key1, Object key2 )
{
return keyComparator.compare( key1, key2 );
}
/**
* Comparse value Objects to determine their sorting order returning a
* value = to, < or > than 0.
*
* @param value1 the first value to compare
* @param value2 the other value to compare to the first
* @return 0 if both are equal, a negative value less than 0 if the first
* is less than the second, or a postive value if the first is greater than
* the second Object.
*/
public int compareValue( Object value1, Object value2 )
{
throw new UnsupportedOperationException();
}
}