Package org.postgresql.jdbc2
Interface ArrayAssistant
-
- All Known Implementing Classes:
UUIDArrayAssistant
public interface ArrayAssistantImplement this interface and register the its instance to ArrayAssistantRegistry, to let Postgres driver to support more array type.- Author:
- Minglei Tu
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class<?>baseType()get array base type.ObjectbuildElement(byte[] bytes, int pos, int len)build a array element from its binary bytes.ObjectbuildElement(String literal)build an array element from its literal string.
-
-
-
Method Detail
-
baseType
Class<?> baseType()
get array base type.- Returns:
- array base type
-
buildElement
Object buildElement(byte[] bytes, int pos, int len)
build a array element from its binary bytes.- Parameters:
bytes- input bytespos- position in input arraylen- length of the element- Returns:
- array element from its binary bytes
-
-