Package weka.core.xml
Class KOML
- java.lang.Object
-
- weka.core.xml.KOML
-
- All Implemented Interfaces:
RevisionHandler
public class KOML extends java.lang.Object implements RevisionHandler
This class is a helper class for XML serialization using KOML . KOML does not need to be present, since the class-calls are done generically via Reflection.- Version:
- $Revision 1.0$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringFILE_EXTENSIONthe extension for KOML files (including '.')
-
Constructor Summary
Constructors Constructor Description KOML()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetRevision()Returns the revision string.static booleanisPresent()returns whether KOML is present or not, i.e.static java.lang.Objectread(java.io.File file)reads the XML-serialized object from the given filestatic java.lang.Objectread(java.io.InputStream stream)reads the XML-serialized object from a streamstatic java.lang.Objectread(java.lang.String filename)reads the XML-serialized object from the given filestatic booleanwrite(java.io.File file, java.lang.Object o)write the XML-serialized object to the given filestatic booleanwrite(java.io.OutputStream stream, java.lang.Object o)writes the XML-serialized object to a streamstatic booleanwrite(java.lang.String filename, java.lang.Object o)writes the XML-serialized object to the given file
-
-
-
Field Detail
-
FILE_EXTENSION
public static final java.lang.String FILE_EXTENSION
the extension for KOML files (including '.')- See Also:
- Constant Field Values
-
-
Method Detail
-
isPresent
public static boolean isPresent()
returns whether KOML is present or not, i.e. whether the classes are in the classpath or not- Returns:
- whether KOML is available
-
read
public static java.lang.Object read(java.lang.String filename) throws java.lang.Exceptionreads the XML-serialized object from the given file- Parameters:
filename- the file to deserialize the object from- Returns:
- the deserialized object
- Throws:
java.lang.Exception- if something goes wrong while reading from the file
-
read
public static java.lang.Object read(java.io.File file) throws java.lang.Exceptionreads the XML-serialized object from the given file- Parameters:
file- the file to deserialize the object from- Returns:
- the deserialized object
- Throws:
java.lang.Exception- if something goes wrong while reading from the file
-
read
public static java.lang.Object read(java.io.InputStream stream) throws java.lang.Exceptionreads the XML-serialized object from a stream- Parameters:
stream- the stream to deserialize the object from- Returns:
- the deserialized object
- Throws:
java.lang.Exception- if something goes wrong while reading from the stream
-
write
public static boolean write(java.lang.String filename, java.lang.Object o) throws java.lang.Exceptionwrites the XML-serialized object to the given file- Parameters:
filename- the file to serialize the object too- the object to write to the file- Returns:
- whether writing was successful or not
- Throws:
java.lang.Exception- if something goes wrong while writing to the file
-
write
public static boolean write(java.io.File file, java.lang.Object o) throws java.lang.Exceptionwrite the XML-serialized object to the given file- Parameters:
file- the file to serialize the object too- the object to write to the file- Returns:
- whether writing was successful or not
- Throws:
java.lang.Exception- if something goes wrong while writing to the file
-
write
public static boolean write(java.io.OutputStream stream, java.lang.Object o) throws java.lang.Exceptionwrites the XML-serialized object to a stream- Parameters:
stream- the stream to serialize the object too- the object to write to the stream- Returns:
- whether writing was successful or not
- Throws:
java.lang.Exception- if something goes wrong while writing to the stream
-
getRevision
public java.lang.String getRevision()
Returns the revision string.- Specified by:
getRevisionin interfaceRevisionHandler- Returns:
- the revision
-
-