Spec-Zone .ru
спецификации, руководства, описания, API

JavaFX: Bringing Rich Experiences To All the Screens Of Your Life

Profile: desktop, common

Overview

A run-time representation of a JavaFX function type.

Profile: desktop

Field Summary

accessnametypedescription
protectedargTypesFXType[]
protectedminArgsint
protectedreturnTypeFXType
protectedvarArgsboolean

Inherited Variables

Method Summary

public boolean equals(javafx.reflect.FXFunctionType ftype)
Parameters
ftype
Returns
boolean
 
public FXType getArgumentType(int i)
Parameters
i
Returns
FXType
 
public FXType getReturnType()
Returns
FXType
 
public boolean isVarArgs()

Was this method declared to take a variable number of arguments? This is a place-holder for future functionality.

Was this method declared to take a variable number of arguments? This is a place-holder for future functionality. (JavaFX doesn't yet support var-args, and we don't set it properly for Java methods either.)

Returns
boolean
 
public int minArgs()

The fixed (minimum) number of arguments needed.

The fixed (minimum) number of arguments needed. Does not count varargs, and (possible future) optional args.

Returns
int
 
public void toStringRaw(java.lang.StringBuilder sb)
Parameters
sb
 
protected void toStringTerse(java.lang.StringBuilder sb)
Parameters
sb
 

Inherited Functions