Package com.naver.ads.util
Class ReflectionUtils.ClassParameter
-
- All Implemented Interfaces:
public final class ReflectionUtils.ClassParameter<V extends Object>Typed parameter used with reflective method calls.
-
-
Constructor Summary
Constructors Constructor Description ReflectionUtils.ClassParameter(Class<out V> clazz, V value)Constructs a new ClassParameter instance.
-
Method Summary
Modifier and Type Method Description final Class<out V>getClazz()the class. final VgetValue()the value. final static <V extends Any> ReflectionUtils.ClassParameter<V>from(Class<out V> clazz, V value)final static Array<Class<?>>getClasses(ReflectionUtils.ClassParameter<?> classParameters)final static Array<Object>getValues(ReflectionUtils.ClassParameter<?> classParameters)-
-
Constructor Detail
-
ReflectionUtils.ClassParameter
ReflectionUtils.ClassParameter(Class<out V> clazz, V value)
Constructs a new ClassParameter instance.
-
-
Method Detail
-
from
final static <V extends Any> ReflectionUtils.ClassParameter<V> from(Class<out V> clazz, V value)
-
getClasses
final static Array<Class<?>> getClasses(ReflectionUtils.ClassParameter<?> classParameters)
-
getValues
final static Array<Object> getValues(ReflectionUtils.ClassParameter<?> classParameters)
-
-
-
-