T - The type represented by this TypeToken.public abstract class TypeToken<T> extends Object
Type.
You can use this to create instances of Type for a type known at compile
time.
For example, to get the Type that represents List<String>:
Type listOfString = new TypeToken<List<String>>(){}.getType();public Type getType()
Copyright © 2008–2014. All rights reserved.