protected final InlineValue<?> _inlineValue;
public RepeatedInlineField(PropertyMeta propertyMeta)
{
super(propertyMeta);
ParamType type = _messagePropertyAccessor.getParamType();
_inlineValue = type.isPrimitive() ? InlineValue.getPrimitive(type.getJavaType()) :
InlineValue.EnumValue.create(_messagePropertyAccessor.getTypeClass());
}