SerialFieldTagpublic interface SerialFieldTag implements Comparable, TagDocuments a Serializable field defined by an ObjectStreamField.
The class parses and stores the three serialField tag parameters:
- field name
- field type name
(fully-qualified or visible from the current import context)
- description of the valid values for the field
This tag is only allowed in the javadoc for the special member
serialPersistentFields. |
Methods Summary |
---|
public int | compareTo(java.lang.Object obj)Compares this Object with the specified Object for order. Returns a
negative integer, zero, or a positive integer as this Object is less
than, equal to, or greater than the given Object.
Included to make SerialFieldTag items java.lang.Comparable.
| public java.lang.String | description()Return the field comment. If there is no serialField comment, return
javadoc comment of corresponding FieldDoc.
| public java.lang.String | fieldName()Return the serialziable field name.
| public java.lang.String | fieldType()Return the field type string.
| public com.sun.javadoc.ClassDoc | fieldTypeDoc()Return the ClassDoc for field type.
|
|