* @return the byte array
*/
public static final byte[] seriOne(Object o) {
if (o instanceof MessageLite) {
MessageLite gen = (MessageLite)o;
return gen.toByteArray();
} else {
throw new SeriException("Message is not protobuf type: " + o.getClass());
}
}