bio

class StringConverter

[source: bio/StringConverter.scala]

abstract class StringConverter[T]
extends AnyRef
Direct Known Subclasses:
AminoAcidConvert, SymbolConvert, IUPACAminoAcidConvert, IUPACGappedAminoAcidConvert, GappedConvert, NucleotideConvert, SymbolConvert, IUPACNucleotideConvert, NucleotideConvert, SymbolConvert, IUPACNucleotideConvert

Method Summary
abstract def fromChar (c : Char) : T
Create an object from its character representation.
abstract def fromItem (i : T) : T
Create an object from an object - fails on Tnknown type
def fromList (list : scala.List[T]) : scala.List[T]
def fromString (s : java.lang.String) : scala.List[T]
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
abstract def fromChar(c : Char) : T
Create an object from its character representation.

abstract def fromItem(i : T) : T
Create an object from an object - fails on Tnknown type

def fromString(s : java.lang.String) : scala.List[T]

def fromList(list : scala.List[T]) : scala.List[T]