public interface RawByte extends RawMemory
RawByte interface provides methods for setting and getting the value of a register or memory area holding
a byte value. A RawByte instance can be obtained from a MMIODevice instance.byte get()
throws java.io.IOException,
PeripheralNotAvailableException
byte value at the memory area associated with this object.byte value.java.io.IOException - if the associated memory area is not readable.PeripheralNotAvailableException - if the peripheral is not currently available (has been released).void set(byte value)
throws java.io.IOException,
PeripheralNotAvailableException
byte value at the memory area associated with this object.value - byte data to set.java.io.IOException - if the associated memory area is not writable.PeripheralNotAvailableException - if the peripheral is not currently available (has been released).Copyright (c) 1990, 2013, Oracle and/or its affiliates. All rights reserved.