Uses of Class
javafx.reflect.TypeRef

Packages that use TypeRef
javafx.reflect Provides reflective access to JavaFX values and types. 
 

Uses of TypeRef in javafx.reflect
 

Subclasses of TypeRef in javafx.reflect
 class ClassRef
          A run-time representation of a JavaFX class.
 class FunctionTypeRef
          A run-time representation of a JavaFX function type.
 class SequenceTypeRef
          A run-time representation of a JavaFX sequence type.
 

Methods in javafx.reflect that return TypeRef
 TypeRef ReflectionContext.getAnyType()
          Get the TypeRef for the "any" type.
 TypeRef FunctionTypeRef.getArgumentType(int i)
           
 TypeRef SequenceTypeRef.getComponentType()
           
abstract  TypeRef MemberRef.getDeclaringType()
           
abstract  TypeRef ReflectionContext.getIntegerType()
          Get the run-time representation of the JavaXF Integer type.
 TypeRef LocalReflectionContext.getIntegerType()
           
abstract  TypeRef ReflectionContext.getNumberType()
          Get the run-time representation of the JavaXF Number type.
 TypeRef LocalReflectionContext.getNumberType()
           
 TypeRef FunctionTypeRef.getReturnType()
           
abstract  TypeRef ValueRef.getType()
          Get the run-time type of this value.
abstract  TypeRef AttributeRef.getType()
           
 

Methods in javafx.reflect with parameters of type TypeRef
abstract  MemberRef ClassRef.getMember(java.lang.String name, TypeRef type)
          Get a member with the matching name and type.
abstract  MethodRef ClassRef.getMethod(java.lang.String name, TypeRef... argType)
          Find the function that (best) matches the name and argument types.
 boolean TypeRef.isAssignableFrom(TypeRef cls)
          For now too conservative, if not comapring ClassRef types, use equals.
 ValueRef ReflectionContext.makeSequence(TypeRef elementType, ValueRef... values)
           
abstract  SequenceBuilder ReflectionContext.makeSequenceBuilder(TypeRef elementType)
          Create a helper object for building a sequence value.
 SequenceBuilder LocalReflectionContext.makeSequenceBuilder(TypeRef elementType)