Here you can find the source of isSortedMap(Object object)
Parameter | Description |
---|---|
object | a parameter |
public static boolean isSortedMap(Object object)
//package com.java2s; /******************************************************************************* * Copyright 2011 Danny Kunz/*from w ww . j a v a2 s . 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.SortedMap; public class Main { /** * Returns true if the given {@link Object} is not null and a {@link SortedMap} derived type * * @param object * @return */ public static boolean isSortedMap(Object object) { return isAssignableFromInstance(SortedMap.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()); } }