Package com.ibm.cics.server
Interface IHolder
- All Known Implementing Classes:
CommAreaHolder,CWAHolder,DataHolder,ItemHolder,KeyHolder,RecordHolder,TCTUAHolder,TWAHolder
public interface IHolder
This interface provides methods for interacting with a byte[] held within a Holder
class.
- Since CICS TS version:
- 5.1
-
Method Summary
Modifier and TypeMethodDescriptionReturns a String derived from the data in the IHolder, assuming that the data is encoded in the LOCALCCSID.byte[]getValue()Returns the raw byte array from the IHolder
-
Method Details
-
getValue
byte[] getValue()Returns the raw byte array from the IHolder- Returns:
- - the raw byte value stored in the IHolder
- Since CICS TS version:
- 5.1
-
getStringValue
String getStringValue()Returns a String derived from the data in the IHolder, assuming that the data is encoded in the LOCALCCSID. The behavior of this method when the bytes are not valid in the LOCALCCSID encoding is unspecified.- Returns:
- - a String representation of the byte-array in the CICS LOCALCCSID.
- Since CICS TS version:
- 5.1
-