com.remedy.arsys.api
Class ByteListInfo
java.lang.Object
|
+--com.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:
|
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 |
ByteListInfo
protected ByteListInfo()
ByteListInfo
public ByteListInfo(int nType,
byte[] byteArray)
clone
public java.lang.Object clone()
throws java.lang.CloneNotSupportedException
- Clone implementation that returns an Object with data cloned from self.
- Overrides:
clone in class java.lang.Object
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.