Class PersonResult
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"/>
<element ref="{}Result"/>
<element ref="{}RaceResult" maxOccurs="unbounded" minOccurs="0"/>
</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 raceResult property.getRank()Gets the value of the rank property.Gets the value of the result 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 result property.
-
Field Details
-
personId
-
person
-
clubId
-
club
-
countryId
-
country
-
rank
-
result
-
raceResult
-
-
Constructor Details
-
PersonResult
public PersonResult()
-
-
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.
-
getResult
Gets the value of the result property.- Returns:
- possible object is
Result
-
setResult
Sets the value of the result property.- Parameters:
value- allowed object isResult
-
getRaceResult
Gets the value of the raceResult 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 raceResult property.For example, to add a new item, do as follows:
getRaceResult().add(newItem);
Objects of the following type(s) are allowed in the list
RaceResult- Returns:
- The value of the raceResult property.
-