com.crystaldecisions.sdk.occa.report.lib
Interface IByteArray

All Known Implementing Classes:
ByteArray

public interface IByteArray

This interface defines an array of bytes.


Method Summary
 void fromString(java.lang.String arrayValue)
           Populates the collection list with data from a string.
 byte[] getBytes()
           Returns an array of bytes.
 java.lang.String toString()
           Returns the collection as a String.
 

Method Detail

fromString

void fromString(java.lang.String arrayValue)

Populates the collection list with data from a string. The string should be in the format valueX="<Value>". Values are separated by a comma. For example: value1="1",value2="No",value3="3.141".

Parameters:
arrayValue - The string that will be used to populate the collection's array.

getBytes

byte[] getBytes()

Returns an array of bytes.

Returns:
An array of bytes.

toString

java.lang.String toString()

Returns the collection as a String.

Overrides:
toString in class java.lang.Object
Returns:
A String containing the values in this collection.