Constructor Byte(byte value)
Member of:
java.lang.Byte
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return new Byte(b).toString();
2
public final void put(Object o, byte b) { put(o, new Byte(b)); }
3
public void put(String name, byte value) { put(name, new Byte(value)); }
4
return getCollection().add(new Byte(element));
5
return getCollection().contains(new Byte(element));
6
return new Byte(rs.getByte(mapping.getColumnName()));
7
return new Byte(rs.getByte(mapping.getColumnIndex().intValue()));
8
return getByte(s, new Byte(byte0)).byteValue();
9
return new Byte(myValue);
10
setParameter(i,new Byte(b));
11
setObjectAsString(p0, new Byte(p1));
12
defaultByte = new Byte(newDefaultByte);
13
out.write(new Byte(ba[off++]).intValue());
14
return new ByteValueImpl(virtualMachineImpl(), new Byte(value));
15
m_vo.setParameter(parameterIndex, new Byte(x));
16
print(name, new Byte(value));
17
wrapped[i] = new Byte(a[i]);
18
Trc.entry(this, name, new Byte(part));
19
info.setValue(new Byte(Byte.MIN_VALUE).toString());
20
validate(new Byte((byte) 1), NumberEncoder.class);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.