| Constructor | Description |
|---|---|
ContinuousCharacter(java.lang.String name,
java.lang.String desc) |
Constructs a basic ContinuousCharacter object with no taxa added yet
|
ContinuousCharacter(java.lang.String name,
java.lang.String desc,
java.util.Set<Taxon> taxa) |
Constructs a basic ContinuousCharacter object with taxa added
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
addTaxa(java.util.Set<Taxon> taxa) |
set the taxa for this character with a previously constructed Set
|
void |
addTaxon(Taxon taxon) |
add a taxon with this character
|
java.lang.String |
getDesc() |
return the description of the character
|
java.lang.String |
getName() |
return the name of the character
|
double |
getSE(Taxon taxon) |
|
java.util.Set<Taxon> |
getTaxa() |
get a Set
|
CharacterType |
getType() |
return the CharacterType of the character
|
java.lang.Object |
getValue(Taxon taxon) |
get a value for a taxon containing the character
|
void |
setDesc(java.lang.String desc) |
set the description of the character
|
void |
setName(java.lang.String name) |
set the name of the character
|
public ContinuousCharacter(java.lang.String name,
java.lang.String desc)
name - the name of the characterdesc - the description of the characterpublic ContinuousCharacter(java.lang.String name,
java.lang.String desc,
java.util.Set<Taxon> taxa)
name - the name of the characterdesc - the description of the charactertaxa - the Setpublic void setName(java.lang.String name)
Characterpublic java.lang.String getName()
Characterpublic void setDesc(java.lang.String desc)
Characterpublic java.lang.String getDesc()
Characterpublic CharacterType getType()
Characterpublic void addTaxa(java.util.Set<Taxon> taxa)
taxa - a Setpublic void addTaxon(Taxon taxon)
Characterpublic java.lang.Object getValue(Taxon taxon)
Characterpublic double getSE(Taxon taxon)
taxon - the taxon for which to get the standard errorhttp://code.google.com/p/jebl2/