InheritanceUtils.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3.reflect;

  18. import org.apache.commons.lang3.BooleanUtils;

  19. /**
  20.  * Utility methods focusing on inheritance.
  21.  *
  22.  * @since 3.2
  23.  */
  24. public class InheritanceUtils {

  25.     /**
  26.      * Returns the number of inheritance hops between two classes.
  27.      *
  28.      * @param child the child class, may be {@code null}
  29.      * @param parent the parent class, may be {@code null}
  30.      * @return the number of generations between the child and parent; 0 if the same class;
  31.      * -1 if the classes are not related as child and parent (includes where either class is null)
  32.      * @since 3.2
  33.      */
  34.     public static int distance(final Class<?> child, final Class<?> parent) {
  35.         if (child == null || parent == null) {
  36.             return -1;
  37.         }

  38.         if (child.equals(parent)) {
  39.             return 0;
  40.         }

  41.         final Class<?> cParent = child.getSuperclass();
  42.         int d = BooleanUtils.toInteger(parent.equals(cParent));

  43.         if (d == 1) {
  44.             return d;
  45.         }
  46.         d += distance(cParent, parent);
  47.         return d > 0 ? d + 1 : -1;
  48.     }

  49.     /**
  50.      * {@link InheritanceUtils} instances should NOT be constructed in standard programming.
  51.      * Instead, the class should be used as
  52.      * {@code MethodUtils.getAccessibleMethod(method)}.
  53.      *
  54.      * <p>This constructor is {@code public} to permit tools that require a JavaBean
  55.      * instance to operate.</p>
  56.      *
  57.      * @deprecated TODO Make private in 4.0.
  58.      */
  59.     @Deprecated
  60.     public InheritanceUtils() {
  61.         // empty
  62.     }
  63. }