Lines Matching refs:field

131  * solely of its name; field values of the constant are not transmitted.  To
139 * serialVersionUID field declarations are also ignored--all enum types have a
187 /** buffer for writing primitive field values */
564 * the substituted object is compatible with every field where the
566 * type of the field or array element abort the serialization by raising an
878 * Put the value of the named boolean field into the persistent field.
880 * @param name the name of the serializable field
881 * @param val the value to assign to the field
883 * match the name of a serializable field for the class whose fields
884 * are being written, or if the type of the named field is not
890 * Put the value of the named byte field into the persistent field.
892 * @param name the name of the serializable field
893 * @param val the value to assign to the field
895 * match the name of a serializable field for the class whose fields
896 * are being written, or if the type of the named field is not
902 * Put the value of the named char field into the persistent field.
904 * @param name the name of the serializable field
905 * @param val the value to assign to the field
907 * match the name of a serializable field for the class whose fields
908 * are being written, or if the type of the named field is not
914 * Put the value of the named short field into the persistent field.
916 * @param name the name of the serializable field
917 * @param val the value to assign to the field
919 * match the name of a serializable field for the class whose fields
920 * are being written, or if the type of the named field is not
926 * Put the value of the named int field into the persistent field.
928 * @param name the name of the serializable field
929 * @param val the value to assign to the field
931 * match the name of a serializable field for the class whose fields
932 * are being written, or if the type of the named field is not
938 * Put the value of the named long field into the persistent field.
940 * @param name the name of the serializable field
941 * @param val the value to assign to the field
943 * match the name of a serializable field for the class whose fields
944 * are being written, or if the type of the named field is not
950 * Put the value of the named float field into the persistent field.
952 * @param name the name of the serializable field
953 * @param val the value to assign to the field
955 * match the name of a serializable field for the class whose fields
956 * are being written, or if the type of the named field is not
962 * Put the value of the named double field into the persistent field.
964 * @param name the name of the serializable field
965 * @param val the value to assign to the field
967 * match the name of a serializable field for the class whose fields
968 * are being written, or if the type of the named field is not
974 * Put the value of the named Object field into the persistent field.
976 * @param name the name of the serializable field
977 * @param val the value to assign to the field
980 * match the name of a serializable field for the class whose fields
981 * are being written, or if the type of the named field is not a
1513 * stream. The given class descriptor specifies which field values to
1536 "field (class \"" + desc.getName() + "\", name: \"" +
1600 /** primitive field values */
1602 /** object field values */
1695 "field (class \"" + desc.getName() + "\", name: \"" +
1711 * Returns offset of field with given name and type. A specified type
1714 * Throws IllegalArgumentException if no matching field found.
1717 ObjectStreamField field = desc.getField(name, type);
1718 if (field == null) {
1719 throw new IllegalArgumentException("no such field " + name +
1722 return field.getOffset();