Class TypeRef<T>

java.lang.Object
org.fest.reflect.reference.TypeRef<T>
Type Parameters:
T - the generic type in this reference.

public abstract class TypeRef<T> extends Object
Understands a references a generic type. Based on Neal Gafter's TypeReference.
Since:
1.1
  • Field Details

    • rawType

      private final Class<?> rawType
  • Constructor Details

    • TypeRef

      public TypeRef()
      Creates a new TypeRef.
      Throws:
      ReflectionError - if the generic type of this reference is missing type parameter.
  • Method Details

    • rawType

      public final Class<?> rawType()
      Returns the raw type of the generic type in this reference.
      Returns:
      the raw type of the generic type in this reference.