| Package | Description |
|---|---|
| org.gedcomx.conclusion |
The conclusion model defines genealogical conclusion data.
|
| org.gedcomx.types |
The types model defines the standard set of types of genealogical data.
|
| Modifier and Type | Method and Description |
|---|---|
FactType |
Fact.getKnownType()
The enum referencing the known type of the fact, or
OTHER if not known. |
| Modifier and Type | Method and Description |
|---|---|
List<Fact> |
Person.getFacts(FactType factType)
Helper method for obtaining specific fact conclusions.
|
Fact |
Person.getFirstFactOfType(FactType type)
Get the first fact of the specified type.
|
void |
Fact.setKnownType(FactType knownType)
Set the type of this fact from a known enumeration of fact types.
|
Fact |
Fact.type(FactType type)
Build up this fact with a type.
|
| Constructor and Description |
|---|
Fact(FactType factType,
Date date,
PlaceReference place)
Create a date/place fact with the passed in type and values.
|
Fact(FactType factType,
Date date,
PlaceReference place,
String value)
Create a date/place fact with the passed in type and values.
|
Fact(FactType factType,
String value)
Create a fact with the passed in type and values.
|
Fact(FactType factType,
String date,
String place)
Create a date/place fact with the passed in type and values.
|
| Modifier and Type | Field and Description |
|---|---|
static FactType |
FactType.Person.Adoption |
static FactType |
FactType.ParentChild.AdoptiveParent |
static FactType |
FactType.Person.AdultChristening |
static FactType |
FactType.Person.Amnesty |
static FactType |
FactType.Couple.Annulment |
static FactType |
FactType.Person.Apprenticeship |
static FactType |
FactType.Person.Baptism |
static FactType |
FactType.Person.BarMitzvah |
static FactType |
FactType.Person.BatMitzvah |
static FactType |
FactType.ParentChild.BiologicalParent |
static FactType |
FactType.Person.Birth |
static FactType |
FactType.Person.Blessing |
static FactType |
FactType.Person.Burial |
static FactType |
FactType.Person.Caste |
static FactType |
FactType.Person.Census |
static FactType |
FactType.Person.Christening |
static FactType |
FactType.Person.Circumcision |
static FactType |
FactType.Person.Clan |
static FactType |
FactType.Couple.CommonLawMarriage |
static FactType |
FactType.Person.Confirmation |
static FactType |
FactType.Person.Cremation |
static FactType |
FactType.Person.Death |
static FactType |
FactType.Couple.Divorce |
static FactType |
FactType.Couple.DivorceFiling |
static FactType |
FactType.Person.Education |
static FactType |
FactType.Person.Emigration |
static FactType |
FactType.Couple.Engagement |
static FactType |
FactType.Person.Ethnicity |
static FactType |
FactType.Person.Excommunication |
static FactType |
FactType.Person.FirstCommunion |
static FactType |
FactType.ParentChild.FosterParent |
static FactType |
FactType.Person.Funeral |
static FactType |
FactType.ParentChild.GuardianParent |
static FactType |
FactType.Person.Immigration |
static FactType |
FactType.Person.Imprisonment |
static FactType |
FactType.Person.LandTransaction |
static FactType |
FactType.Person.Living |
static FactType |
FactType.Person.MaritalStatus |
static FactType |
FactType.Couple.Marriage |
static FactType |
FactType.Couple.MarriageBanns |
static FactType |
FactType.Couple.MarriageContract |
static FactType |
FactType.Couple.MarriageLicense |
static FactType |
FactType.Couple.MarriageNotice |
static FactType |
FactType.Person.Medical |
static FactType |
FactType.Person.MilitaryAward |
static FactType |
FactType.Person.MilitaryDischarge |
static FactType |
FactType.Person.MilitaryService |
static FactType |
FactType.Person.Mission |
static FactType |
FactType.Person.MoveFrom |
static FactType |
FactType.Person.MoveTo |
static FactType |
FactType.Person.MultipleBirth |
static FactType |
FactType.Person.NationalId |
static FactType |
FactType.Person.Nationality |
static FactType |
FactType.Person.Naturalization |
static FactType |
FactType.Couple.NumberOfChildren |
static FactType |
FactType.Person.NumberOfMarriages |
static FactType |
FactType.Person.Obituary |
static FactType |
FactType.Person.Occupation |
static FactType |
FactType.Person.Ordination |
static FactType |
FactType.Person.PhysicalDescription |
static FactType |
FactType.Person.Probate |
static FactType |
FactType.Person.Property |
static FactType |
FactType.Person.Religion |
static FactType |
FactType.Person.Residence |
static FactType |
FactType.Person.Retirement |
static FactType |
FactType.Couple.Separation |
static FactType |
FactType.ParentChild.SociologicalParent |
static FactType |
FactType.ParentChild.StepParent |
static FactType |
FactType.Person.Stillbirth |
static FactType |
FactType.Person.Visit |
static FactType |
FactType.Person.Will |
| Modifier and Type | Field and Description |
|---|---|
static Set<FactType> |
FactType.BIRTHLIKE_FACT_TYPES |
static Set<FactType> |
FactType.DEATHLIKE_FACT_TYPES |
static Set<FactType> |
FactType.DIVORCELIKE_FACT_TYPES |
static Set<FactType> |
FactType.MARRIAGELIKE_FACT_TYPES |
static Set<FactType> |
FactType.MIGRATIONLIKE_FACT_TYPES |
| Modifier and Type | Method and Description |
|---|---|
static FactType |
FactType.fromQNameURI(URI qname)
Get the enumeration from the QName.
|
static FactType |
FactType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FactType[] |
FactType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static boolean |
FactType.Person.isApplicable(FactType type)
Whether the given fact type is applicable to a person.
|
static boolean |
FactType.Couple.isApplicable(FactType type)
Whether the given fact type is applicable to a couple.
|
static boolean |
FactType.ParentChild.isApplicable(FactType type)
Whether the given fact type is applicable to a parent-child relationship.
|
Copyright © 2016. All rights reserved.