T - Data type to handle.public interface IMicroTypeConverter<T>
| Modifier and Type | Method and Description |
|---|---|
default IMicroElement |
convertToMicroElement(T aObject,
String sTagName)
Convert the passed object to a micro element using the specified tag name
and a
null namespace URI. |
IMicroElement |
convertToMicroElement(T aObject,
String sNamespaceURI,
String sTagName)
Convert the passed object to a micro element using the specified tag name
|
T |
convertToNative(IMicroElement aElement)
Convert the passed object to a native element.
|
@Nullable default IMicroElement convertToMicroElement(@Nonnull T aObject, @Nonnull @Nonempty String sTagName)
null namespace URI.aObject - The object to be converted. May not be null.sTagName - The tag name to be used. May neither be null nor empty.null in case creation failed. A micro element with the
specified namespace and tag name otherwise.@Nullable IMicroElement convertToMicroElement(@Nonnull T aObject, @Nullable String sNamespaceURI, @Nonnull @Nonempty String sTagName)
aObject - The object to be converted. May not be null.sNamespaceURI - The namespace URI for the element to be created. May be
null.sTagName - The tag name to be used. May neither be null nor empty.null in case creation failed. A micro element with the
specified namespace and tag name otherwise.@Nullable T convertToNative(@Nonnull IMicroElement aElement)
aElement - The micro element to be converted.null if conversion to a native object failed.Copyright © 2014–2023 Philip Helger. All rights reserved.