Package io.dapr.utils

Class TypeRef<T>

java.lang.Object
io.dapr.utils.TypeRef<T>
Type Parameters:
T - Type to be deserialized.

public abstract class TypeRef<T>
extends java.lang.Object
Used to reference a type.

Usage: new TypeRef<MyClass>(){}

  • Field Summary

    Fields 
    Modifier and Type Field Description
    static TypeRef<java.lang.Boolean> BOOLEAN  
    static TypeRef<java.lang.Byte> BYTE  
    static TypeRef<byte[]> BYTE_ARRAY  
    static TypeRef<java.lang.Character> CHAR  
    static TypeRef<java.lang.Double> DOUBLE  
    static TypeRef<java.lang.Float> FLOAT  
    static TypeRef<java.lang.Integer> INT  
    static TypeRef<int[]> INT_ARRAY  
    static TypeRef<java.lang.Long> LONG  
    static TypeRef<java.lang.String> STRING  
    static TypeRef<java.lang.String[]> STRING_ARRAY  
    static TypeRef<java.lang.Void> VOID  
  • Constructor Summary

    Constructors 
    Constructor Description
    TypeRef()
    Constructor.
  • Method Summary

    Modifier and Type Method Description
    static <T> TypeRef<T> get​(java.lang.Class<T> clazz)
    Creates a reference to a given class type.
    java.lang.reflect.Type getType()
    Gets the type referenced.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

    • TypeRef

      public TypeRef()
      Constructor.
  • Method Details

    • getType

      public java.lang.reflect.Type getType()
      Gets the type referenced.
      Returns:
      type referenced.
    • get

      public static <T> TypeRef<T> get​(java.lang.Class<T> clazz)
      Creates a reference to a given class type.
      Type Parameters:
      T - Type to be referenced.
      Parameters:
      clazz - Class type to be referenced.
      Returns:
      Class type reference.