com.ibm.as400.access.PxShortParm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jt400 Show documentation
Show all versions of jt400 Show documentation
The Open Source version of the IBM Toolbox for Java
The newest version!
///////////////////////////////////////////////////////////////////////////////
//
// JTOpen (IBM Toolbox for Java - OSS version)
//
// Filename: PxShortParm.java
//
// The source code contained herein is licensed under the IBM Public License
// Version 1.0, which has been approved by the Open Source Initiative.
// Copyright (C) 1997-2000 International Business Machines Corporation and
// others. All rights reserved.
//
///////////////////////////////////////////////////////////////////////////////
package com.ibm.as400.access;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.InputStream;
import java.io.IOException;
import java.io.OutputStream;
/**
The PxShortParm class represents a short
parameter in a proxy datastream.
**/
class PxShortParm
extends PxDS
implements PxParm
{
private static final String copyright = "Copyright (C) 1997-2000 International Business Machines Corporation and others.";
// Private data.
private short value_;
/**
Constructs a PxShortParm object.
**/
public PxShortParm ()
{
super (ProxyConstants.DS_SHORT_PARM);
}
/**
Constructs a PxShortParm object.
@param value The short value.
**/
public PxShortParm (short value)
{
super (ProxyConstants.DS_SHORT_PARM);
value_ = value;
}
/**
Constructs a PxShortParm object.
@param value The short value.
**/
public PxShortParm (Short value)
{
this (value.shortValue ());
}
/**
Returns the Object value.
@return The Object value.
**/
public Object getObjectValue ()
{
return Short.valueOf(value_);
}
/**
Returns the short value.
@return The short value.
**/
public short getShortValue ()
{
return value_;
}
/**
Loads this datastream by reading from an input stream.
@param input The input stream.
@param factory The datastream factory. This is sometimes
needed when datastreams are nested.
@exception IOException If an error occurs.
**/
public void readFrom (InputStream input, PxDSFactory factory)
throws IOException
{
super.readFrom (input, factory);
DataInputStream dataInput = new DataInputStream (input);
value_ = dataInput.readShort ();
}
/**
Returns the String representation of the datastream.
@return The String representation of the datastream.
**/
public String toString ()
{
return super.toString () + " (" + value_ + ")";
}
/**
Writes the contents of the datastream to an output stream.
@param output The output stream.
@exception IOException If an error occurs.
**/
public void writeTo (OutputStream output)
throws IOException
{
super.writeTo (output);
DataOutputStream dataOutput = new DataOutputStream (output);
dataOutput.writeShort (value_);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy