| java.lang.Object | |
| ↳ | com.google.code.com.sun.mail.iap.Argument |
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| items | |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructor
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
append the given Argument to this Argument.
| |||||||||||
Write out as parenthesised list.
| |||||||||||
Write out given string as an Atom.
| |||||||||||
Write out given data as a literal.
| |||||||||||
Write out given ByteArrayOutputStream as a Literal.
| |||||||||||
Write out given byte[] as a Literal.
| |||||||||||
Write out number.
| |||||||||||
Write out number.
| |||||||||||
Convert the given string into bytes in the specified
charset, and write the bytes out as an ASTRING
| |||||||||||
Write out given string as an ASTRING, depending on the type
of the characters inside the string.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Constructor
append the given Argument to this Argument. All items from the source argument are copied into this destination argument.
| arg |
|---|
Write out given string as an Atom. Note that an Atom can contain only certain US-ASCII characters. No validation is done on the characters in the string.
| s | String |
|---|
Write out given data as a literal.
| b | Literal representing data to be written out. |
|---|
Write out given ByteArrayOutputStream as a Literal.
| b | ByteArrayOutputStream to be written out. |
|---|
Write out given byte[] as a Literal.
| b | Byte[] to write out |
|---|
Write out number.
| i | Number |
|---|
Write out number.
| i | Number |
|---|
Convert the given string into bytes in the specified charset, and write the bytes out as an ASTRING
| s | |
|---|---|
| charset |
| UnsupportedEncodingException |
|---|
Write out given string as an ASTRING, depending on the type of the characters inside the string. The string should contain only ASCII characters.
XXX: Hmm .. this should really be called writeASCII()
| s | String to write out |
|---|