Uses of Class
org.fest.reflect.reference.TypeRef
-
Packages that use TypeRef Package Description org.fest.reflect.beanproperty Provides a "fluent" API for property access via the Bean Instrospection API.org.fest.reflect.field Provides a "fluent" API for field access via the Java Reflection API.org.fest.reflect.method Provides a "fluent" API for method invocation via the Java Reflection API. -
-
Uses of TypeRef in org.fest.reflect.beanproperty
Methods in org.fest.reflect.beanproperty with parameters of type TypeRef Modifier and Type Method Description <T> PropertyTypeRef<T>
PropertyName. ofType(TypeRef<T> type)
Sets the type reference of the property to access. -
Uses of TypeRef in org.fest.reflect.field
Methods in org.fest.reflect.field with parameters of type TypeRef Modifier and Type Method Description <T> FieldTypeRef<T>
FieldName. ofType(TypeRef<T> type)
Sets the type reference of the field to access.<T> StaticFieldTypeRef<T>
StaticFieldName. ofType(TypeRef<T> type)
Sets the type reference of the field to access. -
Uses of TypeRef in org.fest.reflect.method
Methods in org.fest.reflect.method with parameters of type TypeRef Modifier and Type Method Description <T> MethodReturnTypeRef<T>
MethodName. withReturnType(TypeRef<T> type)
Specifies the return type reference of the method to invoke.<T> StaticMethodReturnTypeRef<T>
StaticMethodName. withReturnType(TypeRef<T> type)
Specifies the return type reference of the static method to invoke.
-