Example usage for org.apache.commons.lang3.reflect TypeUtils toLongString

List of usage examples for org.apache.commons.lang3.reflect TypeUtils toLongString

Introduction

In this page you can find the example usage for org.apache.commons.lang3.reflect TypeUtils toLongString.

Prototype

public static String toLongString(final TypeVariable<?> var) 

Source Link

Document

Format a TypeVariable including its GenericDeclaration .

Usage

From source file:therian.util.TypeVariableMap.java

private static String toString(Type type) {
    if (type instanceof TypeVariable<?>) {
        return TypeUtils.toLongString((TypeVariable<?>) type);
    }//from  ww w. j a  v a2 s  .  c  om
    return Types.toString(type);
}