Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.1.0)

E17493-02

Package oracle.javatools.marshal

Provides generic marshalling and unmarshalling capabilities for converting an object to String.

See:
          Description

Interface Summary
ObjectStore The ObjectStore interface contains methods that are to be implemented by a persistence framework that can traverse objects whose persistent data are represented by public read-writable JavaBean properties.
StringConversion A class that implements this interface indicates that it is able to: Persist itself as a single String through its toString() method.
 

Class Summary
Character2String This is a custom String converter class that meets the static interface requirements as defined by ToStringManager.registerCustomConverter(java.lang.Class).
Class2String This is a custom String converter class that meets the static interface requirements as defined by ToStringManager.registerCustomConverter(java.lang.Class).
ToStringManager Class that helps manage the conversion of objects to and from a String representation.
 

Exception Summary
AttributeMarker The AttributeMarker class can be declared in the throws clause of a getter method to indicate to the marshalling code that a particular persistent property should be persisted in XML as an attribute instead of an element.
OmittedWhenNullMarker The OmittedWhenNullMarker is a special kind of runtime exception that can be declared in the throws clause of a getter method to indicate to the marshalling code that the property represented by the getter is not to be persisted at all if the property value is null.
TransientMarker The TransientMarker is a special kind of runtime exception that can be declared in the throws clause of a getter method to indicate to the marshalling code that the property represented by the getter is transient and should not be persisted.
 

Package oracle.javatools.marshal Description

Provides generic marshalling and unmarshalling capabilities for converting an object to String. The oracle.ide.marshal.xml package builds on this package by adding support for XML representation of JavaBeans, ArrayList, HashMap, URL, and File.


Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.1.0)

E17493-02

Copyright © 1997, 2011, Oracle. All rights reserved.