Class JavaArraySchema<T,E>

java.lang.Object
dev.drtheo.autojson.schema.template.JavaArraySchema<T,E>
Type Parameters:
T - the array type, e.g. int[].
E - the element type, e.g. Integer for ints.
All Implemented Interfaces:
ArraySchema<T,List<E>>, Schema<T>

public class JavaArraySchema<T,E> extends Object implements ArraySchema<T,List<E>>
Implementation Note:
Uses reflections to create a new array instance and a ArrayList to store the values temporary. Consider using your own ArraySchema for your own