Package edu.umd.cs.findbugs.ba.generic.GenericUtilities

Examples of edu.umd.cs.findbugs.ba.generic.GenericUtilities.TypeCategory


        if (expectedString.equals(objString)) {
            return IncompatibleTypes.SEEMS_OK;
        }

        // get a category for each type
        TypeCategory expectedCat = GenericUtilities.getTypeCategory(expectedType);
        TypeCategory argCat = GenericUtilities.getTypeCategory(actualType);
        if (actualString.equals(objString) && expectedCat == TypeCategory.TYPE_VARIABLE) {
            return IncompatibleTypes.SEEMS_OK;
        }
        if (ignoreBaseType) {
            if (expectedCat == TypeCategory.PARAMETERIZED && argCat == TypeCategory.PARAMETERIZED) {
View Full Code Here

TOP

Related Classes of edu.umd.cs.findbugs.ba.generic.GenericUtilities.TypeCategory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.