Package | Description |
---|---|
info.bioinfweb.libralign.model.factory.continuous |
Contains factories for alignment models that work with continuous values (e.g.
|
info.bioinfweb.libralign.model.tokenset.continuous |
Contains classes implementing token sets for continuous character states (e.g.
|
Modifier and Type | Method and Description |
---|---|
AlignmentModel<ContinuousToken<Double>> |
DoubleAlignmentModelFactory.doCreateNewModel(NewAlignmentModelParameterMap parameterMap) |
AlignmentModel<ContinuousToken<Float>> |
FloatAlignmentModelFactory.doCreateNewModel(NewAlignmentModelParameterMap parameterMap) |
Modifier and Type | Method and Description |
---|---|
ContinuousToken<T> |
AbstractContinuousSet.getGapToken() |
ContinuousToken<T> |
AbstractContinuousSet.getMissingInformationToken() |
static <V extends Number & Comparable<V>> |
ContinuousToken.newGapInstance() |
static <V extends Number & Comparable<V>> |
ContinuousToken.newMissingInformationInstance() |
protected abstract ContinuousToken<T> |
AbstractContinuousSet.parseValue(String value) |
protected ContinuousToken<Double> |
DoubleTokenSet.parseValue(String value) |
protected ContinuousToken<Float> |
FloatTokenSet.parseValue(String value) |
ContinuousToken<T> |
AbstractContinuousSet.tokenByKeyStroke(KeyStroke key) |
ContinuousToken<T> |
AbstractContinuousSet.tokenByRepresentation(String representation) |
Modifier and Type | Method and Description |
---|---|
Iterator<ContinuousToken<T>> |
AbstractContinuousSet.iterator()
Continuous sets cannot be iterated, therefore this method is not supported by this class.
|
Modifier and Type | Method and Description |
---|---|
boolean |
AbstractContinuousSet.add(ContinuousToken<T> e)
This method is not supported by this implementation and will always throw an
UnsupportedOperationException . |
int |
ContinuousToken.compareTo(ContinuousToken<V> other) |
String |
AbstractContinuousSet.descriptionByToken(ContinuousToken<T> token) |
CharacterSymbolMeaning |
AbstractContinuousSet.getMeaning(ContinuousToken<T> token) |
CharacterSymbolType |
AbstractContinuousSet.getSymbolType(ContinuousToken<T> token) |
boolean |
AbstractContinuousSet.isGapToken(ContinuousToken<T> token) |
boolean |
AbstractContinuousSet.isMissingInformationToken(ContinuousToken<T> token) |
String |
AbstractContinuousSet.representationByToken(ContinuousToken<T> token) |
Modifier and Type | Method and Description |
---|---|
boolean |
AbstractContinuousSet.addAll(Collection<? extends ContinuousToken<T>> c)
This method is not supported by this implementation and will always throw an
UnsupportedOperationException . |