515253545556575859
return (short)value; } public int getInt() { if(value > INT_MAX || value < INT_MIN) { throw new MessageTypeException(); // TODO message } return (int)value; }
48495051525354
public boolean isRaw() { return false; } public NilValue asNilValue() { throw new MessageTypeException(); }
52535455565758
public NilValue asNilValue() { throw new MessageTypeException(); } public BooleanValue asBooleanValue() { throw new MessageTypeException(); }
56575859606162
public BooleanValue asBooleanValue() { throw new MessageTypeException(); } public IntegerValue asIntegerValue() { throw new MessageTypeException(); }
60616263646566
public IntegerValue asIntegerValue() { throw new MessageTypeException(); } public FloatValue asFloatValue() { throw new MessageTypeException(); }
64656667686970
public FloatValue asFloatValue() { throw new MessageTypeException(); } public ArrayValue asArrayValue() { throw new MessageTypeException(); }
68697071727374
public ArrayValue asArrayValue() { throw new MessageTypeException(); } public MapValue asMapValue() { throw new MessageTypeException(); }
72737475767778
public MapValue asMapValue() { throw new MessageTypeException(); } public RawValue asRawValue() { throw new MessageTypeException(); }