Package | Description |
---|---|
com.ibm.as400.access |
Provides classes that represent various IBM i data and resources.
|
Modifier and Type | Method | Description |
---|---|---|
void |
BaseDataQueue.clear() |
Removes all entries from the data queue.
|
void |
KeyedDataQueue.clear(byte[] key) |
Removes all entries that match the key from the data queue.
|
void |
KeyedDataQueue.clear(String key) |
Removes all entries that match the key from the data queue.
|
void |
DataQueue.create(DataQueueAttributes attributes) |
Creates a sequential data queue on the system.
|
void |
UserIndex.create(String extendedAttribute,
byte entryLengthAttribute,
int entryLength,
byte keyInsertion,
int keyLength,
byte immediateUpdate,
byte optimization,
String authority,
String description) |
Creates a user index on the system.
|
void |
BaseDataQueue.delete() |
Deletes the data queue.
|
boolean |
BaseDataQueue.exists() |
Checks to see if the data queue exists.
|
int |
DecimalDataArea.getDecimalPositions() |
Returns the number of digits to the right of the decimal point in this data area.
|
String |
BaseDataQueue.getDescription() |
Returns the text description of the data queue.
|
boolean |
BaseDataQueue.getForceToAuxiliaryStorage() |
Returns a value that indicates if entries are forced to auxiliary storage.
|
int |
KeyedDataQueue.getKeyLength() |
Returns the length of the keys (in bytes) on this queue.
|
int |
DataArea.getLength() |
Returns the size of the data area.
|
int |
BaseDataQueue.getMaxEntryLength() |
Returns the maximum entry length of the data queue.
|
boolean |
BaseDataQueue.getSaveSenderInformation() |
Returns whether sender information is stored with each data queue entry.
|
void |
UserIndex.insertEntry(byte[] entryBytes,
byte[] optionBytes) |
Inserts one or more entries into the user index using the insinxen MI instruction.
|
boolean |
BaseDataQueue.isFIFO() |
Returns a value that indicates if entries are read in FIFO order.
|
DataQueueEntry |
DataQueue.peek() |
Reads an entry from the data queue without removing it from the queue.
|
DataQueueEntry |
DataQueue.peek(int wait) |
Reads an entry from the data queue without removing it from the queue.
|
KeyedDataQueueEntry |
KeyedDataQueue.peek(byte[] key) |
Reads an entry from the data queue without removing it from the queue.
|
KeyedDataQueueEntry |
KeyedDataQueue.peek(byte[] key,
int wait,
String searchType) |
Reads an entry from the data queue without removing it from the queue.
|
KeyedDataQueueEntry |
KeyedDataQueue.peek(String key) |
Reads an entry from the data queue without removing it from the queue.
|
KeyedDataQueueEntry |
KeyedDataQueue.peek(String key,
int wait,
String searchType) |
Reads an entry from the data queue without removing it from the queue.
|
String |
CharacterDataArea.read() |
Reads the data from the data area.
|
int |
CharacterDataArea.read(byte[] dataBuffer,
int dataBufferOffset,
int dataAreaOffset,
int dataLength) |
Reads the data from the data area.
|
String |
CharacterDataArea.read(int type) |
Reads the data from the data area.
|
String |
CharacterDataArea.read(int dataAreaOffset,
int dataLength) |
Reads the data from the data area.
|
String |
CharacterDataArea.read(int dataAreaOffset,
int dataLength,
int type) |
Reads the data from the data area.
|
DataQueueEntry |
DataQueue.read() |
Reads an entry from the data queue and removes it from the queue.
|
DataQueueEntry |
DataQueue.read(int wait) |
Reads an entry from the data queue and removes it from the queue.
|
BigDecimal |
DecimalDataArea.read() |
Returns the data read from the data area.
|
KeyedDataQueueEntry |
KeyedDataQueue.read(byte[] key) |
Reads an entry from the data queue and removes it from the queue.
|
KeyedDataQueueEntry |
KeyedDataQueue.read(byte[] key,
int wait,
String searchType) |
Reads an entry from the data queue and removes it from the queue.
|
KeyedDataQueueEntry |
KeyedDataQueue.read(String key) |
Reads an entry from the data queue and removes it from the queue.
|
KeyedDataQueueEntry |
KeyedDataQueue.read(String key,
int wait,
String searchType) |
Reads an entry from the data queue and removes it from the queue.
|
String |
LocalDataArea.read() |
Reads the data from the data area.
|
int |
LocalDataArea.read(byte[] dataBuffer,
int dataBufferOffset,
int dataAreaOffset,
int dataLength) |
Reads the data from the data area.
|
String |
LocalDataArea.read(int type) |
Reads the data from the data area.
|
String |
LocalDataArea.read(int dataAreaOffset,
int dataLength) |
Reads the data from the data area.
|
String |
LocalDataArea.read(int dataAreaOffset,
int dataLength,
int type) |
Reads the data from the data area.
|
boolean |
LogicalDataArea.read() |
Returns the value in the data area.
|
void |
BaseDataQueue.refreshAttributes() |
Refreshes the attributes of the data queue.
|
void |
DataArea.refreshAttributes() |
Refreshes the attributes of the data area.
|
void |
DataQueue.write(byte[] data) |
Writes an entry to the data queue.
|
void |
DataQueue.write(String data) |
Writes a string entry to the data queue.
|
void |
KeyedDataQueue.write(byte[] key,
byte[] data) |
Writes an entry to the data queue.
|
void |
KeyedDataQueue.write(String key,
String data) |
Writes a string entry to the data queue.
|
Copyright © 2024. All rights reserved.