com.ibm.mq.headers.pcf
Class MQCFST
- java.lang.Object
-
- com.ibm.mq.jmqi.JmqiObject
-
- com.ibm.mq.headers.internal.Header
-
- com.ibm.mq.headers.pcf.PCFHeader
-
- com.ibm.mq.headers.pcf.PCFParameter
-
- com.ibm.mq.headers.pcf.MQCFST
-
public class MQCFST extends PCFParameter
MQCFST (PCF string parameter) header class.struct tagMQCFST { MQLONG Type; // Structure type MQLONG StrucLength; // Structure length MQLONG Parameter; // Parameter identifier MQLONG CodedCharSetId; // Coded character set identifier MQLONG StringLength; // Length of string MQCHAR String[1]; // String value -- first character };
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.ibm.mq.headers.MQHeader
MQHeader.Field
-
-
Field Summary
-
Constructor Summary
Constructors Constructor and Description MQCFST()
Constructs an MQCFST instance with default field values.MQCFST(java.io.DataInput message)
Constructs an MQCFST instance populated from an MQMessage.MQCFST(java.io.DataInput message, int encoding, int characterSet)
Constructs an MQCFST instance populated from a DataInput source.MQCFST(int parameter, java.lang.String string)
Initializes an MQCFST with the specified values.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description boolean
equals(java.lang.Object obj)
Returns true when invoked with another MQCFST instance with the same parameter and equivalent value.int
getCodedCharSetId()
gets the coded character set identifierint
getParameter()
gets the parameter identifierjava.lang.String
getString()
gets the stringint
getStringLength()
gets the length of the stringjava.lang.String
getStringValue()
gets the parameter value as a Stringint
getStrucLength()
Get the length of the structure.int
getType()
gets the structure typejava.lang.Object
getValue()
gets the parameter valueint
hashCode()
Returns a hash code value for the objectvoid
setCodedCharSetId(int value)
sets the coded character set identifiervoid
setParameter(int value)
sets the parameter identifiervoid
setString(SecureString value)
Set a confidential data to store.void
setString(java.lang.String value)
sets the stringstatic int
write(java.io.DataOutput message, int parameter, java.lang.String string)
A convenience method for writing an MQCFST header structure with the specified values to an MQMessage-
Methods inherited from class com.ibm.mq.headers.pcf.PCFParameter
getHeaderVersion, getParameterName, nextParameter
-
Methods inherited from class com.ibm.mq.headers.internal.Header
characterSet, encoding, fields, getBytesValue, getCharValue, getCharValue, getIntValue, getJmqiEnv, getStringValue, getValue, headerType, read, read, read, setBytesValue, setCharValue, setCharValue, setIntValue, setStringValue, setValue, size, store, store, toString, type, validate, write, write
-
-
-
-
Constructor Detail
-
MQCFST
public MQCFST()
Constructs an MQCFST instance with default field values.
-
MQCFST
public MQCFST(java.io.DataInput message) throws MQDataException, java.io.IOException
Constructs an MQCFST instance populated from an MQMessage.- Parameters:
message
- the message to read- Throws:
MQDataException
- if the message content does not yield a valid MQCFST stucturejava.io.IOException
- if there is a problem reading the message content
-
MQCFST
public MQCFST(java.io.DataInput message, int encoding, int characterSet) throws MQDataException, java.io.IOException
Constructs an MQCFST instance populated from a DataInput source.- Parameters:
message
- the MQMessage or other DataInput source to readencoding
- the initial numeric encoding of the data in the messagecharacterSet
- the initial CCSID of the data in the message- Throws:
MQDataException
- if the message content does not yield a valid MQCFST stucturejava.io.IOException
- if there is a problem reading the message content
-
MQCFST
public MQCFST(int parameter, java.lang.String string)
Initializes an MQCFST with the specified values.- Parameters:
parameter
- the parameter identifierstring
- the string parameter value
-
-
Method Detail
-
write
public static int write(java.io.DataOutput message, int parameter, java.lang.String string) throws java.io.IOException
A convenience method for writing an MQCFST header structure with the specified values to an MQMessage- Parameters:
message
- the message to write toparameter
- the parameter identifierstring
- the string parameter value- Returns:
- the number of bytes written
- Throws:
java.io.IOException
- if there is a problem writing the message- See Also:
CMQCFC
-
equals
public boolean equals(java.lang.Object obj)
Returns true when invoked with another MQCFST instance with the same parameter and equivalent value. Comparison of the values is performed using the equals method of String. Note: Two MQCFST instances with null values are not regarded as equal.
It doesn't really matter - such instances are not really interesting - but it's worth commenting on.- Overrides:
equals
in classPCFParameter
- Parameters:
obj
-- Returns:
- true if the object equals this one
-
hashCode
public int hashCode()
Description copied from class:PCFParameter
Returns a hash code value for the object- Specified by:
hashCode
in classPCFParameter
- Returns:
- a hash code value for this object.
- See Also:
PCFParameter.hashCode()
-
getType
public int getType()
gets the structure type
-
getStrucLength
public int getStrucLength()
Get the length of the structure.- Returns:
- the structure length.
-
getParameter
public int getParameter()
gets the parameter identifier- Specified by:
getParameter
in classPCFParameter
- Returns:
- the parameter identifier
-
setParameter
public void setParameter(int value)
sets the parameter identifier- Parameters:
value
- the parameter identifier
-
getCodedCharSetId
public int getCodedCharSetId()
gets the coded character set identifier- Returns:
- the coded character set identifier
-
setCodedCharSetId
public void setCodedCharSetId(int value)
sets the coded character set identifier- Parameters:
value
- the coded character set identifier
-
getStringLength
public int getStringLength()
gets the length of the string- Returns:
- the length of the string
-
getString
public java.lang.String getString()
gets the string- Returns:
- the string
-
setString
public void setString(java.lang.String value)
sets the string- Parameters:
value
- the string
-
setString
public void setString(SecureString value)
Set a confidential data to store.- Parameters:
value
- - to be set in store
-
getValue
public java.lang.Object getValue()
Description copied from class:PCFParameter
gets the parameter value- Specified by:
getValue
in classPCFParameter
- Returns:
- the parameter value
- See Also:
PCFParameter.getValue()
-
getStringValue
public java.lang.String getStringValue()
Description copied from class:PCFParameter
gets the parameter value as a String- Specified by:
getStringValue
in classPCFParameter
- Returns:
- the parameter value as a String
- See Also:
PCFParameter.getStringValue()
-
-