org.das2.qstream.SerializeRegistry
SerializeRegistry( )
getByName
getByName( String name ) → org.das2.qstream.SerializeDelegate
return the delegate without using a class instance.
Parameters
name - class name like "org.das2.
Returns:
an org.das2.qstream.SerializeDelegate
[search for examples]
[view on GitHub]
[view on old javadoc]
[view source]
getDelegate
getDelegate( java.lang.Class clas ) → org.das2.qstream.SerializeDelegate
returns a delegate or null if the class is not supported.
Parameters
clas - the class
Returns:
the delegate which can be used to format and parse the class
[search for examples]
[view on GitHub]
[view on old javadoc]
[view source]
register
register( java.lang.Class clas, org.das2.qstream.SerializeDelegate sd ) → void
Clients like SerializeUtil are able to register methods for
serializing additional classes.
Parameters
clas - the class
sd - the delegate
Returns:
void (returns nothing)
See Also:
org.autoplot.state.SerializeUtil in the Autoplot project. in the Autoplot project.
[search for examples]
[view on GitHub]
[view on old javadoc]
[view source]