7.0 Action Request System Java API

com.remedy.arsys.api
Class ByteListInfo

java.lang.Object
  extended bycom.remedy.arsys.api.ByteListInfo
All Implemented Interfaces:
java.lang.Cloneable

public class ByteListInfo
extends java.lang.Object
implements java.lang.Cloneable

The ByteListInfo class is used to represent image information. Typical values include:


Constructor Summary
protected ByteListInfo()
           
  ByteListInfo(int nType, byte[] byteArray)
           
 
Method Summary
 java.lang.Object clone()
          Clone implementation that returns an Object with data cloned from self.
 int getType()
          Retrieves type of image (for example, .jpeg).
 byte[] getValue()
          Retrieves contents of image.
 void setType(int nType)
          Sets type of image (for example, .jpeg).
 void setValue(byte[] val)
          Sets contents of image.
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ByteListInfo

protected ByteListInfo()

ByteListInfo

public ByteListInfo(int nType,
                    byte[] byteArray)
Method Detail

clone

public java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Clone implementation that returns an Object with data cloned from self.

Throws:
java.lang.CloneNotSupportedException

getType

public int getType()
Retrieves type of image (for example, .jpeg).


getValue

public byte[] getValue()
Retrieves contents of image.


setType

public void setType(int nType)
Sets type of image (for example, .jpeg).


setValue

public void setValue(byte[] val)
Sets contents of image.


7.0 Action Request System Java API