Lines Matching defs:field

92         /** cache mapping field group/local desc pairs -> field reflectors */
99 /** queue for WeakReferences to field reflectors keys */
169 /** reflector for setting/getting serializable field values */
281 * @return an array containing an element for each persistent field of
291 * Get the field of this class by name.
293 * @param name the name of the data field to look for
294 * @return The ObjectStreamField object of the named field or null if
295 * there is no such named field.
389 * Placeholder used in class descriptor and field reflector lookup tables
519 // field mismatches impossible when matching local fields vs. self
533 name, "unmatched serializable field(s) declared");
698 "enum descriptor has non-zero field count: " + numFields);
711 "invalid descriptor for field " + fname).initCause(e);
818 * descriptor's field array is returned, otherwise the array itself is
826 * Looks up a serializable field of the represented class by name and type.
829 * types only. Returns matching field, or null if no match found.
1211 * Returns aggregate size (in bytes) of marshalled primitive field values
1227 * Fetches the serializable primitive field values of object obj and
1247 * Fetches the serializable object field values of object obj and stores
1265 * Calculates and sets serializable field offsets, as well as primitive
1266 * data size and object field count totals. Throws InvalidClassException
1315 throw new InvalidClassException(name, "illegal field order");
1546 * the given class. Serializable fields backed by an actual field of the
1572 * "serialPersistentFields" field, or null if no appropriate
1573 * "serialPersistentFields" field is defined. Serializable fields backed
1574 * by an actual field of the class are represented by ObjectStreamFields
1576 * releases, a "serialPersistentFields" field with a null value is
1635 * contains a Field object for the field it represents. If no default
1823 * Class for computing and caching field/constructor/method signatures
1832 public MemberSignature(Field field) {
1833 member = field;
1834 name = field.getName();
1835 signature = getClassSignature(field.getType());
1854 * Class for setting and retrieving serializable field values in batch.
1866 /** unsafe field keys for reading fields - may contain dupes */
1870 /** field data offsets */
1872 /** field type codes */
1874 /** field types */
1925 * Fetches the serializable primitive field values of object obj and
1934 * descriptor this FieldReflector was obtained from, no field keys
2034 * Fetches the serializable object field values of object obj and
2043 * descriptor this FieldReflector was obtained from, no field keys
2063 * field with a value of the wrong type will trigger an appropriate
2085 val.getClass().getName() + " to field " +
2172 * refer to the same class and equivalent field formats.
2221 * field contains a Field object for that field; unmatched
2238 * ObjectStreamField represented a non-primitive field and belonged to
2255 "incompatible types for field " + f.getName());