throw new IllegalArgumentException("type must be not null");
}
if (this.value == null) {
return;
}
Encoder encoder = this.getEncoderFromType(this.type);
if (encoder == null) {
throw new IllegalArgumentException("encoder not found for type '" + this.type + "'");
}