- Accessor - Class in net.minidev.asm
-
Contains all information needed to access a java field.
- Accessor(Class<?>, Field, FieldFilter) - Constructor for class net.minidev.asm.Accessor
-
build accessor for a field
- addConversion(Iterable<Class<?>>) - Method in class net.minidev.asm.BeansAccessBuilder
-
- addConversion(Class<?>) - Method in class net.minidev.asm.BeansAccessBuilder
-
- addTypeMapper(Class<?>, Class<?>) - Static method in class net.minidev.asm.BeansAccessConfig
-
Field type convertor for all classes
Convertor classes should contains mapping method Prototyped as:
public static DestinationType Method(Object data);
- ASMUtil - Class in net.minidev.asm
-
ASM Utils used to simplify class generation
- ASMUtil() - Constructor for class net.minidev.asm.ASMUtil
-
- autoBoxing(MethodVisitor, Class<?>) - Static method in class net.minidev.asm.ASMUtil
-
Append the call of proper autoboxing method for the given primitif type.
- autoBoxing(MethodVisitor, Type) - Static method in class net.minidev.asm.ASMUtil
-
Append the call of proper autoboxing method for the given primitif type.
- autoUnBoxing1(MethodVisitor, Type) - Static method in class net.minidev.asm.ASMUtil
-
Append the call of proper extract primitive type of an boxed object.
- autoUnBoxing2(MethodVisitor, Type) - Static method in class net.minidev.asm.ASMUtil
-
Append the call of proper extract primitive type of an boxed object. this
methode use Number interface to unbox object