All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.orientechnologies.common.comparator.ODefaultComparator Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2010-2012 Luca Garulli (l.garulli--at--orientechnologies.com)
 *
 * Licensed 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 com.orientechnologies.common.comparator;

import java.util.Comparator;

/**
 * Comparator that calls {@link Comparable#compareTo(Object)} methods for getting results for all {@link Comparable} types.
 * Otherwise result of {@link Comparator} that returned from {@link OComparatorFactory} will be used.
 * 
 * @author Andrey Lomakin
 * @since 03.07.12
 */
public class ODefaultComparator implements Comparator {
  public static final ODefaultComparator INSTANCE = new ODefaultComparator();

  @SuppressWarnings("unchecked")
  public int compare(final Object objectOne, final Object objectTwo) {
    if (objectOne instanceof Comparable)
      return ((Comparable) objectOne).compareTo(objectTwo);

    final Comparator comparator = OComparatorFactory.INSTANCE.getComparator(objectOne.getClass());

    if (comparator != null)
      return ((Comparator) comparator).compare(objectOne, objectTwo);

    throw new IllegalStateException("Object of class" + objectOne.getClass().getName() + " can not be compared");
  }
}