Class Human
- java.lang.Object
-
- org.hibernate.testing.orm.domain.animal.Animal
-
- org.hibernate.testing.orm.domain.animal.Mammal
-
- org.hibernate.testing.orm.domain.animal.Human
-
-
Constructor Summary
Constructors Constructor Description Human()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Address>
getAddresses()
BigDecimal
getBigDecimalValue()
BigInteger
getBigIntegerValue()
Map<String,Human>
getFamily()
float
getFloatValue()
Collection<Human>
getFriends()
double
getHeightInches()
int
getIntValue()
Name
getName()
String
getNickName()
Set<String>
getNickNames()
Collection<DomesticAnimal>
getPets()
void
setAddresses(Map<String,Address> addresses)
void
setBigDecimalValue(BigDecimal bigDecimalValue)
void
setBigIntegerValue(BigInteger bigIntegerValue)
void
setFamily(Map family)
void
setFloatValue(float floatValue)
void
setFriends(Collection<Human> friends)
void
setHeightInches(double height)
void
setIntValue(int intValue)
void
setName(Name name)
void
setNickName(String nickName)
void
setNickNames(Set<String> nickNames)
void
setPets(Collection<DomesticAnimal> pets)
-
Methods inherited from class org.hibernate.testing.orm.domain.animal.Mammal
equals, getBirthdate, hashCode, isPregnant, setBirthdate, setPregnant
-
Methods inherited from class org.hibernate.testing.orm.domain.animal.Animal
addOffspring, getBodyWeight, getDescription, getFather, getId, getMother, getOffspring, getSerialNumber, getZoo, setBodyWeight, setDescription, setFather, setId, setMother, setOffspring, setSerialNumber, setZoo
-
-
-
-
Method Detail
-
getName
public Name getName()
-
setName
public void setName(Name name)
-
getNickName
public String getNickName()
-
setNickName
public void setNickName(String nickName)
-
getHeightInches
public double getHeightInches()
-
setHeightInches
public void setHeightInches(double height)
-
getBigDecimalValue
public BigDecimal getBigDecimalValue()
-
setBigDecimalValue
public void setBigDecimalValue(BigDecimal bigDecimalValue)
-
getBigIntegerValue
public BigInteger getBigIntegerValue()
-
setBigIntegerValue
public void setBigIntegerValue(BigInteger bigIntegerValue)
-
getFloatValue
public float getFloatValue()
-
setFloatValue
public void setFloatValue(float floatValue)
-
getIntValue
public int getIntValue()
-
setIntValue
public void setIntValue(int intValue)
-
getFriends
public Collection<Human> getFriends()
-
setFriends
public void setFriends(Collection<Human> friends)
-
getPets
public Collection<DomesticAnimal> getPets()
-
setPets
public void setPets(Collection<DomesticAnimal> pets)
-
setFamily
public void setFamily(Map family)
-
-