<T> ObjectPlySource.Handle<T> |
ObjectPlySource.register(String elementName,
List<T> objects) |
Register a new element type to be provided by this instance.
|
<U extends Byte> ObjectPlySource.Handle<T> |
ObjectPlySource.Handle.withByte(String propertyName,
Function<T,U> getter) |
Provide the specified property with the given getter.
|
ObjectPlySource.Handle<T> |
ObjectPlySource.Handle.withByteList(String propertyName,
Function<T,byte[]> getter) |
Provide the specified property with the given getter.
|
<U extends Double> ObjectPlySource.Handle<T> |
ObjectPlySource.Handle.withDouble(String propertyName,
Function<T,U> getter) |
Provide the specified property with the given getter.
|
ObjectPlySource.Handle<T> |
ObjectPlySource.Handle.withDoubleList(String propertyName,
Function<T,double[]> getter) |
Provide the specified property with the given getter.
|
<U extends Float> ObjectPlySource.Handle<T> |
ObjectPlySource.Handle.withFloat(String propertyName,
Function<T,U> getter) |
Provide the specified property with the given getter.
|
ObjectPlySource.Handle<T> |
ObjectPlySource.Handle.withFloatList(String propertyName,
Function<T,float[]> getter) |
Provide the specified property with the given getter.
|
<U extends Integer> ObjectPlySource.Handle<T> |
ObjectPlySource.Handle.withInt(String propertyName,
Function<T,U> getter) |
Provide the specified property with the given getter.
|
ObjectPlySource.Handle<T> |
ObjectPlySource.Handle.withIntList(String propertyName,
Function<T,int[]> getter) |
Provide the specified property with the given getter.
|
<U extends Short> ObjectPlySource.Handle<T> |
ObjectPlySource.Handle.withShort(String propertyName,
Function<T,U> getter) |
Provide the specified property with the given getter.
|
ObjectPlySource.Handle<T> |
ObjectPlySource.Handle.withShortList(String propertyName,
Function<T,short[]> getter) |
Provide the specified property with the given getter.
|