mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Improve IQ.Type javadoc
This commit is contained in:
parent
dc6af6dd99
commit
e722018808
1 changed files with 18 additions and 9 deletions
|
@ -256,21 +256,30 @@ public abstract class IQ extends Packet {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A enum to represent the type of the IQ packet. The types are:
|
* A enum to represent the type of the IQ stanza.
|
||||||
*
|
|
||||||
* <ul>
|
|
||||||
* <li>IQ.Type.get
|
|
||||||
* <li>IQ.Type.set
|
|
||||||
* <li>IQ.Type.result
|
|
||||||
* <li>IQ.Type.error
|
|
||||||
* </ul>
|
|
||||||
*/
|
*/
|
||||||
public enum Type {
|
public enum Type {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The IQ stanza requests information, inquires about what data is needed in order to complete further operations, etc.
|
||||||
|
*/
|
||||||
get,
|
get,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The IQ stanza provides data that is needed for an operation to be completed, sets new values, replaces existing values, etc.
|
||||||
|
*/
|
||||||
set,
|
set,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The IQ stanza is a response to a successful get or set request.
|
||||||
|
*/
|
||||||
result,
|
result,
|
||||||
error;
|
|
||||||
|
/**
|
||||||
|
* The IQ stanza reports an error that has occurred regarding processing or delivery of a get or set request.
|
||||||
|
*/
|
||||||
|
error,
|
||||||
|
;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Converts a String into the corresponding types. Valid String values
|
* Converts a String into the corresponding types. Valid String values
|
||||||
|
|
Loading…
Reference in a new issue