return extractPojo(entry, target);
}
public Object extractFromBinary(PofContext ctx, Binary bin) {
PofValue root = PofValueParser.parse(bin, ctx);
PofSerializer codec = ctx.getPofSerializer(root.getTypeId());
if (codec instanceof ReflectionPofSerializer) {
Object[] holder = new Object[1];
String reminder;
try {
reminder = ((ReflectionPofSerializer)codec).extract(root, path, holder);