Uses of Class
r01f.generics.TypeRef

Packages that use TypeRef
r01f.reflection.fluent   
 

Uses of TypeRef in r01f.reflection.fluent
 

Fields in r01f.reflection.fluent declared as TypeRef
private  TypeRef<T> StaticFieldTypes.StaticFieldTypeGenerics._fieldType
           
private  TypeRef<T> FieldTypes.FieldTypeGenerics._fieldType
           
private  TypeRef<T> PropertyTypes.PropertyTypeGenerics._propertyType
           
 

Methods in r01f.reflection.fluent with parameters of type TypeRef
(package private) static
<T> StaticFieldTypes.StaticFieldTypeGenerics<T>
StaticFieldTypes.newFieldTypeGenerics(java.lang.String fieldName, TypeRef<T> fieldType)
           
(package private) static
<T> FieldTypes.FieldTypeGenerics<T>
FieldTypes.newFieldTypeGenerics(java.lang.String name, TypeRef<T> type)
           
(package private) static
<T> PropertyInvoker<T>
PropertyInvoker.newInvoker(java.lang.String propertyName, TypeRef<T> expectedType, java.lang.Object target)
           
(package private) static
<T> FieldInvoker<T>
FieldInvoker.newInvoker(java.lang.String fieldName, TypeRef<T> expectedType, java.lang.Object target)
           
(package private) static
<T> PropertyTypes.PropertyTypeGenerics<T>
PropertyTypes.newPropertyTypeGenerics(java.lang.String name, TypeRef<T> type)
           
(package private) static
<T> StaticMethodReturnTypes.StaticMethodReturnTypeGenerics<T>
StaticMethodReturnTypes.newReturnTypeGenerics(java.lang.String methodName, TypeRef<T> type)
           
(package private) static
<T> MethodReturnTypes.MethodReturnTypeGenerics<T>
MethodReturnTypes.newReturnTypeGenerics(java.lang.String methodName, TypeRef<T> type)
           
<T> StaticFieldTypes.StaticFieldTypeGenerics<T>
StaticFieldReflection.ofType(TypeRef<T> type)
          Sets the type reference of the field to access.
<T> PropertyTypes.PropertyTypeGenerics<T>
PropertyReflection.ofType(TypeRef<T> type)
          Sets the type reference of the property to access.
<T> FieldTypes.FieldTypeGenerics<T>
FieldReflection.ofType(TypeRef<T> type)
          Sets the type reference of the field to access.
<T> StaticMethodReturnTypes.StaticMethodReturnTypeGenerics<T>
StaticMethodReflection.withReturnType(TypeRef<T> type)
          Specifies the return type reference of the static method to invoke.
<T> MethodReturnTypes.MethodReturnTypeGenerics<T>
MethodReflection.withReturnType(TypeRef<T> type)
          Specifies the return type reference of the method to invoke.
 

Constructors in r01f.reflection.fluent with parameters of type TypeRef
FieldTypes.FieldTypeGenerics(java.lang.String name, TypeRef<T> type)
           
PropertyTypes.PropertyTypeGenerics(java.lang.String name, TypeRef<T> type)
           
StaticFieldTypes.StaticFieldTypeGenerics(java.lang.String fieldName, TypeRef<T> fieldType)