Example usage for org.apache.commons.lang3.reflect TypeLiteral getType

List of usage examples for org.apache.commons.lang3.reflect TypeLiteral getType

Introduction

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

Prototype

@Override
    public Type getType() 

Source Link

Usage

From source file:org.talend.daikon.properties.property.Property.java

/**
 * For internal use only.
 */
Property(TypeLiteral<T> type, String name, String title) {
    this(type.getType(), name, title);
}