Package dev.enola.thing.gen.gexf
Class GexfGenerator
java.lang.Object
dev.enola.thing.gen.gexf.GexfGenerator
- All Implemented Interfaces:
ConverterInto<Iterable<Thing>,,Appendable> ConverterIntoAppendable<Iterable<Thing>>,ThingsIntoAppendableConverter
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanconvertInto(Iterable<Thing> from, Appendable out) Convert from an I into an O.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface dev.enola.common.convert.ConverterInto
convertIntoOrThrowMethods inherited from interface dev.enola.thing.gen.ThingsIntoAppendableConverter
convertIntoOrThrow, label
-
Constructor Details
-
GexfGenerator
-
-
Method Details
-
convertInto
public boolean convertInto(Iterable<Thing> from, Appendable out) throws ConversionException, IOException Description copied from interface:ConverterIntoConvert from an I into an O.- Specified by:
convertIntoin interfaceConverterInto<Iterable<Thing>,Appendable> - Specified by:
convertIntoin interfaceConverterIntoAppendable<Iterable<Thing>>- Parameters:
from- the input to convertout- the destination where to output- Returns:
- true if conversion was successful, false if this converter cannot handle it; see
ConverterIntoChain - Throws:
ConversionException- in case of conversion problems or technical failures to read from I or write to OIOException- TODO wrap IOException into ConversionException and remove throws
-