switch (simpleValue.getSimpleValueType()) {
case FALSE:
case NULL:
case TRUE:
case UNDEFINED:
SimpleValueType type = simpleValue.getSimpleValueType();
write((7 << 5) | type.getValue());
break;
case UNALLOCATED:
write((7 << 5) | simpleValue.getValue());
break;
case RESERVED: