Java SortedSet Type Check isSortedSet(Object object)

Here you can find the source of isSortedSet(Object object)

Description

Returns true if the given Object is not null and a SortedSet derived type

License

Apache License

Parameter

Parameter Description
object a parameter

Declaration

public static boolean isSortedSet(Object object) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright 2011 Danny Kunz/*from www.j  a v  a 2s  .c o m*/
 * 
 * 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.
 ******************************************************************************/

import java.util.SortedSet;

public class Main {
    /**
     * Returns true if the given {@link Object} is not null and a {@link SortedSet} derived type
     * 
     * @param object
     * @return
     */
    public static boolean isSortedSet(Object object) {
        return isAssignableFromInstance(SortedSet.class, object);
    }

    /**
     * Returns true if the given target {@link Class} is {@link Class#isAssignableFrom(Class)} from the given {@link Object}. In
     * other words is the assignment "<code>TargetType target = (TargetType) object;</code>" valid
     * 
     * @param targetType
     * @param object
     * @return
     */
    public static boolean isAssignableFromInstance(Class<?> targetType, Object object) {
        return object != null && targetType != null && targetType.isAssignableFrom(object.getClass());
    }
}

Related

  1. isSortedSet(final Object value)
  2. isSortedSetType(Class type)