<T> ObjectPlyTarget.Handle<T> |
ObjectPlyTarget.register(String elementName,
Supplier<T> supplier) |
Register a new element type to be handled by this instance.
|
<U extends Byte> ObjectPlyTarget.Handle<T> |
ObjectPlyTarget.Handle.withByte(String propertyName,
BiConsumer<T,U> setter) |
Handle the specified property with the given setter.
|
ObjectPlyTarget.Handle<T> |
ObjectPlyTarget.Handle.withCharList(String propertyName,
BiConsumer<T,byte[]> setter) |
Handle the specified property with the given setter.
|
<U extends Double> ObjectPlyTarget.Handle<T> |
ObjectPlyTarget.Handle.withDouble(String propertyName,
BiConsumer<T,U> setter) |
Handle the specified property with the given setter.
|
ObjectPlyTarget.Handle<T> |
ObjectPlyTarget.Handle.withDoubleList(String propertyName,
BiConsumer<T,double[]> setter) |
Handle the specified property with the given setter.
|
<U extends Float> ObjectPlyTarget.Handle<T> |
ObjectPlyTarget.Handle.withFloat(String propertyName,
BiConsumer<T,U> setter) |
Handle the specified property with the given setter.
|
ObjectPlyTarget.Handle<T> |
ObjectPlyTarget.Handle.withFloatList(String propertyName,
BiConsumer<T,float[]> setter) |
Handle the specified property with the given setter.
|
<U extends Integer> ObjectPlyTarget.Handle<T> |
ObjectPlyTarget.Handle.withInt(String propertyName,
BiConsumer<T,U> setter) |
Handle the specified property with the given setter.
|
ObjectPlyTarget.Handle<T> |
ObjectPlyTarget.Handle.withIntList(String propertyName,
BiConsumer<T,int[]> setter) |
Handle the specified property with the given setter.
|
<U extends Short> ObjectPlyTarget.Handle<T> |
ObjectPlyTarget.Handle.withShort(String propertyName,
BiConsumer<T,U> setter) |
Handle the specified property with the given setter.
|
ObjectPlyTarget.Handle<T> |
ObjectPlyTarget.Handle.withShortList(String propertyName,
BiConsumer<T,short[]> setter) |
Handle the specified property with the given setter.
|