Package omero
Interface rtypes.Conversion
-
- Enclosing class:
- rtypes
public static interface rtypes.Conversion
SPI-style interface which helps the omero server to properly convert omero.RType objects into Java-native objects for use in Hibernate.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
convert(IceMapper mapper)
Convert the "val" field on the given RType instance to an ome.model.* representation.java.lang.Class<?>
type()
Specifies the type that can be expected from theconvert(IceMapper)
method.
-
-
-
Method Detail
-
type
java.lang.Class<?> type()
Specifies the type that can be expected from theconvert(IceMapper)
method.
-
convert
java.lang.Object convert(IceMapper mapper) throws ApiUsageException
Convert the "val" field on the given RType instance to an ome.model.* representation.- Throws:
ApiUsageException
-
-