Method byteValue()
Return type: byte
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
ps.setByte(index, ((Byte) value).byteValue());
2
byte v = ((Byte)value).byteValue();
3
myValue = ((Byte)aValue).byteValue();
4
return (valSet_) ? (int)dataObj_.byteValue() : 1231;
5
validate(newData.byteValue());
6
data[i] = b.byteValue();
7
target.writeByte(((Byte)fValue).byteValue(), "byteValue", out); //$NON-NLS-1$
8
byte val = ((Byte)(convert(value))).byteValue();
9
a.insert_octet(((Byte)o).byteValue());
10
any.insert_octet(((Byte)o).byteValue());
11
return asPython( ((Byte)obj).byteValue());
12
returnValue += (char)Byte.decode( token ).byteValue();
13
oos.writeByte(((Byte)message[i][1]).byteValue());
14
if(lDataClass == Byte.TYPE) {lbOK=true;updateByte(lFieldName,((Byte)lData).byteValue());}
15
dout.writeByte(((Byte)obj).byteValue());
16
for (i = 0; i < k; i++) r [i] = (((Byte)array[i]) == null) ? 0 : ((Byte)array[i]).byteValue ();
17
stmt.setByte(i++, ((Byte) o).byteValue());
18
setByte (parameterIndex, ((Byte) x).byteValue ());
19
ps.setByte(index, ((Byte) value).byteValue());
20
((byte) -(((Byte) pValue).byteValue ()));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.