FileDocCategorySizeDatePackage
ByteHolder.javaAPI DocApache Axis 1.41202Sat Apr 22 18:57:28 BST 2006javax.xml.rpc.holders

ByteHolder

public final class ByteHolder extends Object implements Holder
Holder for bytes.
version
1.0

Fields Summary
public byte
value
The byte contained by this holder.
Constructors Summary
public ByteHolder()
Make a new ByteHolder with a null value.

public ByteHolder(byte value)
Make a new ByteHolder with value as the value.

param
value the byte to hold

        this.value = value;
    
Methods Summary