Class EntityOfLists

java.lang.Object
org.hibernate.testing.orm.domain.gambit.EntityOfLists

@Entity public class EntityOfLists extends Object
  • Constructor Details

    • EntityOfLists

      public EntityOfLists()
    • EntityOfLists

      public EntityOfLists(Integer id, String name)
  • Method Details

    • getId

      public Integer getId()
    • setId

      public void setId(Integer id)
    • getName

      public String getName()
    • setName

      public void setName(String name)
    • getListOfBasics

      public List<String> getListOfBasics()
    • setListOfBasics

      public void setListOfBasics(List<String> listOfBasics)
    • getListOfNumbers

      public List<Double> getListOfNumbers()
    • setListOfNumbers

      public void setListOfNumbers(List<Double> listOfNumbers)
    • addBasic

      public void addBasic(String basic)
    • addNumber

      public void addNumber(double number)
    • getListOfConvertedEnums

      public List<EnumValue> getListOfConvertedEnums()
    • setListOfConvertedEnums

      public void setListOfConvertedEnums(List<EnumValue> listOfConvertedEnums)
    • addConvertedEnum

      public void addConvertedEnum(EnumValue value)
    • getListOfEnums

      public List<EnumValue> getListOfEnums()
    • setListOfEnums

      public void setListOfEnums(List<EnumValue> listOfEnums)
    • addEnum

      public void addEnum(EnumValue value)
    • getListOfComponents

      public List<SimpleComponent> getListOfComponents()
    • setListOfComponents

      public void setListOfComponents(List<SimpleComponent> listOfComponents)
    • addComponent

      public void addComponent(SimpleComponent value)
    • getListOfOneToMany

      public List<SimpleEntity> getListOfOneToMany()
    • setListOfOneToMany

      public void setListOfOneToMany(List<SimpleEntity> listOfOneToMany)
    • addOneToMany

      public void addOneToMany(SimpleEntity value)
    • getListOfManyToMany

      public List<SimpleEntity> getListOfManyToMany()
    • setListOfManyToMany

      public void setListOfManyToMany(List<SimpleEntity> listOfManyToMany)
    • addManyToMany

      public void addManyToMany(SimpleEntity value)