Lines Matching refs:setValue

211      * setValue() if the length of value does not match the component count.
236 public boolean setValue(int[] value) {
270 public boolean setValue(int value) {
271 return setValue(new int[] {
286 public boolean setValue(long[] value) {
307 public boolean setValue(long value) {
308 return setValue(new long[] {
327 public boolean setValue(String value) {
363 public boolean setValue(Rational[] value) {
394 public boolean setValue(Rational value) {
395 return setValue(new Rational[] {
411 public boolean setValue(byte[] value, int offset, int length) {
425 * Equivalent to setValue(value, 0, value.length).
427 public boolean setValue(byte[] value) {
428 return setValue(value, 0, value.length);
441 public boolean setValue(byte value) {
442 return setValue(new byte[] {
448 * Sets the value for this tag using an appropriate setValue method for the
451 * <li>The corresponding setValue method for the class of the object passed
457 public boolean setValue(Object obj) {
461 return setValue(((Short) obj).shortValue() & 0x0ffff);
463 return setValue((String) obj);
465 return setValue((int[]) obj);
467 return setValue((long[]) obj);
469 return setValue((Rational) obj);
471 return setValue((Rational[]) obj);
473 return setValue((byte[]) obj);
475 return setValue(((Integer) obj).intValue());
477 return setValue(((Long) obj).longValue());
479 return setValue(((Byte) obj).byteValue());
487 return setValue(fin);
495 return setValue(fin);
503 return setValue(fin);
511 return setValue(fin);
519 * format of "yyyy:MM:dd kk:mm:ss" and calls {@link #setValue(String)}. This
529 return setValue(TIME_FORMAT.format(new Date(time)));