while (true) {
final Type type = this.getPropertyType();
final GeneratorContext context = this.getGeneratorContext();
if (type == context.getBoolean()) {
literal = new BooleanLiteral(this.getBooleanValue());
break;
}
if (type == context.getByte()) {
literal = new ByteLiteral(this.getByteValue());
break;