Package org.zkoss.bind.paranamer
Class ParameterReflectionParanamer
- java.lang.Object
-
- org.zkoss.bind.paranamer.ParameterReflectionParanamer
-
-
Field Summary
-
Fields inherited from interface org.zkoss.bind.paranamer.Paranamer
EMPTY_NAMES
-
-
Constructor Summary
Constructors Constructor Description ParameterReflectionParanamer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String[]lookupParameterNames(java.lang.reflect.AccessibleObject methodOrConstructor)Lookup the parameter names of a given method.java.lang.String[]lookupParameterNames(java.lang.reflect.AccessibleObject methodOrConstructor, boolean throwExceptionIfMissing)Lookup the parameter names of a given method.
-
-
-
Method Detail
-
lookupParameterNames
public java.lang.String[] lookupParameterNames(java.lang.reflect.AccessibleObject methodOrConstructor)
Description copied from interface:ParanamerLookup the parameter names of a given method.- Specified by:
lookupParameterNamesin interfaceParanamer- Parameters:
methodOrConstructor- theMethodorConstructorfor which the parameter names are looked up.- Returns:
- A list of the parameter names.
-
lookupParameterNames
public java.lang.String[] lookupParameterNames(java.lang.reflect.AccessibleObject methodOrConstructor, boolean throwExceptionIfMissing)Description copied from interface:ParanamerLookup the parameter names of a given method.- Specified by:
lookupParameterNamesin interfaceParanamer- Parameters:
methodOrConstructor- theMethodorConstructorfor which the parameter names are looked up.throwExceptionIfMissing- whether to throw an exception if no Paranamer data found (versus return null).- Returns:
- A list of the parameter names.
-
-