java.lang.Object
com.neuron.jaffer.Utility
com.neuron.jaffer.AFP_ServerInfo
- class AFP_ServerInfo
- extends Utility
| Fields inherited from class com.neuron.jaffer.Utility |
|
| Methods inherited from class com.neuron.jaffer.Utility |
afp2unixTime, bits, dump, dump, dump, dump, empty, error, hasBits, hex, hex, hex, isValidLongName, list, readAFPString, readCString, readInt2, readInt4, readInt8, readPString, readPStringArray, unix2afpTime, writeInt2, writeInt4, writeInt8, writePString, writePStringArray |
serverName
private java.lang.String serverName
afpVersions
private java.lang.String[] afpVersions
uamModules
private java.lang.String[] uamModules
icon
private java.lang.Object icon
flags
private int flags
AFP_ServerInfo
AFP_ServerInfo(java.lang.String sn,
java.lang.String[] av,
java.lang.String[] ua,
int flags)
AFP_ServerInfo
AFP_ServerInfo(ByteReader rr)
throws java.io.IOException
readInt2
private int readInt2(ByteReader rr,
int pos)
throws java.io.IOException
readPString
private java.lang.String readPString(ByteReader rr,
int pos)
throws java.io.IOException
readPStringArray
private java.lang.String[] readPStringArray(ByteReader rr,
int pos)
throws java.io.IOException
write
public void write(ByteWriter ww)
codedLength
private static final int codedLength(java.lang.String[] s)
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object
- Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method
never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string
concatenation with this object. If the result is
null, string concatenation will instead
use "null".
The default implementation returns
getClass().getName() + "@" +
Integer.toHexString(hashCode()).