Package dev.drtheo.autojson.schema.base
Interface ArraySchema.Simple
-
- All Implemented Interfaces:
-
dev.drtheo.autojson.schema.base.ArraySchema,dev.drtheo.autojson.schema.base.Schema
public interface ArraySchema.Simple<T> implements ArraySchema<T, Intermediary>
A utility class that implements ArraySchema without an intermediary value.
-
-
Method Summary
Modifier and Type Method Description Tpack(T obj)Converts the Intermediary type into the built T type. -
Methods inherited from class dev.drtheo.autojson.schema.base.ArraySchema
deserialize, instantiate, serialize, serialize, type -
Methods inherited from class dev.drtheo.autojson.schema.base.Schema
asArray, asObject, asPrimitive, asWrapper, createInstance -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
pack
T pack(T obj)
Converts the Intermediary type into the built T type.
- Parameters:
obj- the Intermediary object.- Returns:
the built T object.
-
-
-
-