Class PersonStart
Java class for anonymous complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<choice>
<element ref="{}PersonId"/>
<element ref="{}Person"/>
</choice>
<choice minOccurs="0">
<element ref="{}ClubId"/>
<element ref="{}Club"/>
<element ref="{}CountryId"/>
<element ref="{}Country"/>
</choice>
<element ref="{}Rank" maxOccurs="unbounded" minOccurs="0"/>
<choice>
<element ref="{}Start"/>
<element ref="{}RaceStart" maxOccurs="unbounded"/>
</choice>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetClub()Gets the value of the club property.Gets the value of the clubId property.Gets the value of the country property.Gets the value of the countryId property.Gets the value of the person property.Gets the value of the personId property.Gets the value of the raceStart property.getRank()Gets the value of the rank property.getStart()Gets the value of the start property.voidSets the value of the club property.voidSets the value of the clubId property.voidsetCountry(Country value) Sets the value of the country property.voidsetCountryId(CountryId value) Sets the value of the countryId property.voidSets the value of the person property.voidsetPersonId(PersonId value) Sets the value of the personId property.voidSets the value of the start property.
-
Field Details
-
personId
-
person
-
clubId
-
club
-
countryId
-
country
-
rank
-
start
-
raceStart
-
-
Constructor Details
-
PersonStart
public PersonStart()
-
-
Method Details
-
getPersonId
Gets the value of the personId property.- Returns:
- possible object is
PersonId
-
setPersonId
Sets the value of the personId property.- Parameters:
value- allowed object isPersonId
-
getPerson
Gets the value of the person property.- Returns:
- possible object is
Person
-
setPerson
Sets the value of the person property.- Parameters:
value- allowed object isPerson
-
getClubId
Gets the value of the clubId property.- Returns:
- possible object is
ClubId
-
setClubId
Sets the value of the clubId property.- Parameters:
value- allowed object isClubId
-
getClub
Gets the value of the club property.- Returns:
- possible object is
Club
-
setClub
Sets the value of the club property.- Parameters:
value- allowed object isClub
-
getCountryId
Gets the value of the countryId property.- Returns:
- possible object is
CountryId
-
setCountryId
Sets the value of the countryId property.- Parameters:
value- allowed object isCountryId
-
getCountry
Gets the value of the country property.- Returns:
- possible object is
Country
-
setCountry
Sets the value of the country property.- Parameters:
value- allowed object isCountry
-
getRank
Gets the value of the rank property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the rank property.For example, to add a new item, do as follows:
getRank().add(newItem);
Objects of the following type(s) are allowed in the list
Rank- Returns:
- The value of the rank property.
-
getStart
Gets the value of the start property.- Returns:
- possible object is
Start
-
setStart
Sets the value of the start property.- Parameters:
value- allowed object isStart
-
getRaceStart
Gets the value of the raceStart property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the raceStart property.For example, to add a new item, do as follows:
getRaceStart().add(newItem);
Objects of the following type(s) are allowed in the list
RaceStart- Returns:
- The value of the raceStart property.
-