Sets the content to the specified sub array of bytes. @param b the bytes @param off the start offset of the bytes @param len the length of the bytes
(byte[] b, int off, int len)
| 144 | * @param len the length of the bytes |
| 145 | */ |
| 146 | public void setBytes(byte[] b, int off, int len) { |
| 147 | byteC.setBytes(b, off, len); |
| 148 | type = T_BYTES; |
| 149 | hasHashCode = false; |
| 150 | hasLongValue = false; |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Sets the content to be a char[] |
no outgoing calls