Skip navigation links
A B C E F G H I J M N O P R S T V W 

A

AbstractEntitySqlGeneratorTest - Class in org.fastnate.generator.test
Test the EntitySqlGenerator framework.
AbstractEntitySqlGeneratorTest() - Constructor for class org.fastnate.generator.test.AbstractEntitySqlGeneratorTest
 
AccessTest - Class in org.fastnate.generator.test.access
Tests that access types are read correctly.
AccessTest() - Constructor for class org.fastnate.generator.test.access.AccessTest
 

B

BaseTestEntity - Class in org.fastnate.generator.test
Simple base class for entitities.
BaseTestEntity() - Constructor for class org.fastnate.generator.test.BaseTestEntity
 
buildEntities() - Method in class org.fastnate.data.test.SuccessorData
 
buildEntities() - Method in class org.fastnate.data.test.TestData
 

C

ChildTestEntity - Class in org.fastnate.generator.test.collections
An entity that is included in CollectionsTestEntity to test mapped-by constructs.
ChildTestEntity() - Constructor for class org.fastnate.generator.test.collections.ChildTestEntity
 
close() - Method in class org.fastnate.generator.test.SqlEmWriter
 
CollectionsTest - Class in org.fastnate.generator.test.collections
Test collections in entities.
CollectionsTest() - Constructor for class org.fastnate.generator.test.collections.CollectionsTest
 
CollectionsTestEntity - Class in org.fastnate.generator.test.collections
An entity for testing collections in SQL generation.
CollectionsTestEntity() - Constructor for class org.fastnate.generator.test.collections.CollectionsTestEntity
 
CollectionsTestEntityProperty - Class in org.fastnate.generator.test.collections
An embedded property of an entity.
CollectionsTestEntityProperty() - Constructor for class org.fastnate.generator.test.collections.CollectionsTestEntityProperty
 
createEntity(Map<String, String>) - Method in class org.fastnate.data.test.CsvTestData
 
CsvTestData - Class in org.fastnate.data.test
Tests the import from CSV.
CsvTestData(File) - Constructor for class org.fastnate.data.test.CsvTestData
Creates a new instance of this test class.

E

EmbeddedTest - Class in org.fastnate.generator.test.embedded
Contains tests for embedded entities.
EmbeddedTest() - Constructor for class org.fastnate.generator.test.embedded.EmbeddedTest
 
EntityImporterTest - Class in org.fastnate.data
Tests the entity importer.
EntityImporterTest() - Constructor for class org.fastnate.data.EntityImporterTest
 
equals(Object) - Method in class org.fastnate.data.test.TestEntity
 
equals(Object) - Method in class org.fastnate.generator.test.BaseTestEntity
 
equals(Object) - Method in class org.fastnate.generator.test.embedded.TestEmbeddedId
 
equals(Object) - Method in class org.fastnate.generator.test.inheritance.MappedSuperclassTestEntity
 
equals(Object) - Method in class org.fastnate.generator.test.inheritance.TablePerClassSuperclassTestEntity
 
equals(Object) - Method in class org.fastnate.generator.test.primitive.PrimitiveTestEntity
 
ExplicitAccessTestEntity - Class in org.fastnate.generator.test.access
An example entity that has an explicit Access annotation.
ExplicitAccessTestEntity() - Constructor for class org.fastnate.generator.test.access.ExplicitAccessTestEntity
 

F

findResults(Class<E>) - Method in class org.fastnate.generator.test.AbstractEntitySqlGeneratorTest
Finds all entities of the given entity class.
findResults(String, Class<E>) - Method in class org.fastnate.generator.test.AbstractEntitySqlGeneratorTest
Finds all entities for the given query and entity class.
findSingleResult(Class<E>) - Method in class org.fastnate.generator.test.AbstractEntitySqlGeneratorTest
Finds the only entity for the given entity class.
findSingleResult(String, Class<E>) - Method in class org.fastnate.generator.test.AbstractEntitySqlGeneratorTest
Finds the entity for the given query and entity class.
FixedIdTestEntity - Class in org.fastnate.generator.test.ids
An entity that uses a number as explicit primary key.
FixedIdTestEntity(String) - Constructor for class org.fastnate.generator.test.ids.FixedIdTestEntity
Creates a new instance of FixedIdTestEntity.
flush() - Method in class org.fastnate.generator.test.SqlEmWriter
 

G

getDescription() - Method in interface org.fastnate.generator.test.inheritance.SubclassEntity
The description of the entity, defined in the sub class in the entity hierarchy.
getEntities() - Method in class org.fastnate.data.test.TestData
 
getId() - Method in class org.fastnate.generator.test.access.ExplicitAccessTestEntity
The id of this ExplicitAccessTestEntity.
getId() - Method in class org.fastnate.generator.test.access.ImplicitAccessTestEntity
The id of this ImplicitAccessTestEntity.
getName() - Method in class org.fastnate.generator.test.access.ExplicitAccessTestEntity
The name of this ExplicitAccessTestEntity.
getName() - Method in class org.fastnate.generator.test.access.ImplicitAccessTestEntity
The name of this ImplicitAccessTestEntity.
getName() - Method in interface org.fastnate.generator.test.inheritance.SuperclassEntity
The name of the entity, defined in the root class of the entity hierarchy.
getOther() - Method in class org.fastnate.generator.test.ids.IdTestEntity
The other entity of the same type.
getSuperProperty() - Method in interface org.fastnate.generator.test.inheritance.SuperclassEntity
The property that was defined in MappedSuperclassTestEntity.

H

hashCode() - Method in class org.fastnate.data.test.TestEntity
 
hashCode() - Method in class org.fastnate.generator.test.BaseTestEntity
 
hashCode() - Method in class org.fastnate.generator.test.embedded.TestEmbeddedId
 
hashCode() - Method in class org.fastnate.generator.test.inheritance.MappedSuperclassTestEntity
 
hashCode() - Method in class org.fastnate.generator.test.inheritance.TablePerClassSuperclassTestEntity
 
hashCode() - Method in class org.fastnate.generator.test.primitive.PrimitiveTestEntity
 

I

IdentityTestEntity - Class in org.fastnate.generator.test.ids
An entity that uses an identity column for generating its primary key.
IdentityTestEntity(String) - Constructor for class org.fastnate.generator.test.ids.IdentityTestEntity
Creates a new instance of IdentityTestEntity.
IdsTest - Class in org.fastnate.generator.test.ids
Tests that ids of entities are written correctly.
IdsTest() - Constructor for class org.fastnate.generator.test.ids.IdsTest
 
IdTestEntity<O extends IdTestEntity<O>> - Class in org.fastnate.generator.test.ids
Base class for all test entities that test the writing of ids.
IdTestEntity() - Constructor for class org.fastnate.generator.test.ids.IdTestEntity
 
ImplicitAccessTestEntity - Class in org.fastnate.generator.test.access
An example entity that has an explicit Access annotation.
ImplicitAccessTestEntity(String) - Constructor for class org.fastnate.generator.test.access.ImplicitAccessTestEntity
Creates a new instance of ImplicitAccessTestEntity.
InheritanceTest - Class in org.fastnate.generator.test.inheritance
Tests that inheritance is correctly taken into account.
InheritanceTest() - Constructor for class org.fastnate.generator.test.inheritance.InheritanceTest
 

J

JoinedSubclassTestEntity - Class in org.fastnate.generator.test.inheritance
Test class that ensures that an entity hierarchy with InheritanceType.JOINED is written correctly.
JoinedSubclassTestEntity(String, String, String) - Constructor for class org.fastnate.generator.test.inheritance.JoinedSubclassTestEntity
Creates a new instance of JoinedSubclassTestEntity.
JoinedSuperclassTestEntity - Class in org.fastnate.generator.test.inheritance
The superclass of JoinedSubclassTestEntity to test InheritanceType.JOINED.
JoinedSuperclassTestEntity(String, String) - Constructor for class org.fastnate.generator.test.inheritance.JoinedSuperclassTestEntity
Creates a new instance of JoinedSuperclassTestEntity.

M

MappedSubclassTestEntity - Class in org.fastnate.generator.test.inheritance
Entity that is the subclass of a mapped super class.
MappedSubclassTestEntity(String, String) - Constructor for class org.fastnate.generator.test.inheritance.MappedSubclassTestEntity
Creates a new instance of MappedSubclassTestEntity.
MappedSuperclassTestEntity - Class in org.fastnate.generator.test.inheritance
Mapped superclasses to test inheritance in entities.
MappedSuperclassTestEntity(String) - Constructor for class org.fastnate.generator.test.inheritance.MappedSuperclassTestEntity
Creates a new instance of MappedSuperclassTestEntity.
MapsTest - Class in org.fastnate.generator.test.collections
Test maps in entities.
MapsTest() - Constructor for class org.fastnate.generator.test.collections.MapsTest
 
MapsTestEntity - Class in org.fastnate.generator.test.collections
An entity for testing maps in SQL generation.
MapsTestEntity() - Constructor for class org.fastnate.generator.test.collections.MapsTestEntity
 
MavenPluginTest - Class in org.fastnate.maven.test
Tests that all entities were written to the SQL file during process classes.
MavenPluginTest() - Constructor for class org.fastnate.maven.test.MavenPluginTest
 

N

NQ_ENTITY_BY_NAME - Static variable in class org.fastnate.generator.test.primitive.PrimitiveTestEntity
Name query to find entity by :name.

O

org.fastnate.data - package org.fastnate.data
 
org.fastnate.data.test - package org.fastnate.data.test
 
org.fastnate.generator.test - package org.fastnate.generator.test
 
org.fastnate.generator.test.access - package org.fastnate.generator.test.access
 
org.fastnate.generator.test.collections - package org.fastnate.generator.test.collections
 
org.fastnate.generator.test.embedded - package org.fastnate.generator.test.embedded
 
org.fastnate.generator.test.ids - package org.fastnate.generator.test.ids
 
org.fastnate.generator.test.inheritance - package org.fastnate.generator.test.inheritance
 
org.fastnate.generator.test.overrides - package org.fastnate.generator.test.overrides
 
org.fastnate.generator.test.primitive - package org.fastnate.generator.test.primitive
 
org.fastnate.generator.test.recursion - package org.fastnate.generator.test.recursion
 
org.fastnate.maven.test - package org.fastnate.maven.test
 
OverrideEntity - Class in org.fastnate.generator.test.overrides
Contains some AttributeOverride and AssociationOverride for the OverridesTest.
OverrideEntity() - Constructor for class org.fastnate.generator.test.overrides.OverrideEntity
 
OverridesTest - Class in org.fastnate.generator.test.overrides
Tests that AttributeOverride and AssociationOverride are taken into account.
OverridesTest() - Constructor for class org.fastnate.generator.test.overrides.OverridesTest
 

P

PrimitiveEntityTest - Class in org.fastnate.generator.test.primitive
Tests that primitive properties are written correctly.
PrimitiveEntityTest() - Constructor for class org.fastnate.generator.test.primitive.PrimitiveEntityTest
 
PrimitiveTestEntity - Class in org.fastnate.generator.test.primitive
Entity to test primitive properties.
PrimitiveTestEntity(String) - Constructor for class org.fastnate.generator.test.primitive.PrimitiveTestEntity
Creates a new instance of PrimitiveTestEntity.

R

RecursiveEntityTest - Class in org.fastnate.generator.test.recursion
Test that recursions are written correctly.
RecursiveEntityTest() - Constructor for class org.fastnate.generator.test.recursion.RecursiveEntityTest
 

S

SequenceTestEntity - Class in org.fastnate.generator.test.ids
An entity that uses a sequence for generating its primary key.
SequenceTestEntity(String) - Constructor for class org.fastnate.generator.test.ids.SequenceTestEntity
Creates a new instance of SequenceTestEntity.
SerializableTestObject - Class in org.fastnate.generator.test.primitive
Used to test that serializable objects may be written.
SerializableTestObject() - Constructor for class org.fastnate.generator.test.primitive.SerializableTestObject
 
setId(long) - Method in class org.fastnate.generator.test.access.ExplicitAccessTestEntity
Sets the id of this ExplicitAccessTestEntity.
setId(Long) - Method in class org.fastnate.generator.test.access.ImplicitAccessTestEntity
Sets the id of this ImplicitAccessTestEntity.
setName(String) - Method in class org.fastnate.generator.test.access.ExplicitAccessTestEntity
Sets the name of this ExplicitAccessTestEntity.
setName(String) - Method in class org.fastnate.generator.test.access.ImplicitAccessTestEntity
Sets the name of this ImplicitAccessTestEntity.
setOther(O) - Method in class org.fastnate.generator.test.ids.IdTestEntity
Sets the other entity.
setUp() - Method in class org.fastnate.generator.test.AbstractEntitySqlGeneratorTest
Build a entity manager factory (with a connected database) for testing.
setUp() - Method in class org.fastnate.maven.test.MavenPluginTest
Build a entity manager factory (with a connected database) for testing.
SimpleTestEntity - Class in org.fastnate.generator.test
Simple test entity to use in other entities to test references.
SimpleTestEntity(String) - Constructor for class org.fastnate.generator.test.SimpleTestEntity
Creates a new instance of SimpleTestEntity.
SingleTableSubclassTestEntity - Class in org.fastnate.generator.test.inheritance
Test class that ensures that an entity hierarchy with InheritanceType.SINGLE_TABLE is written correctly.
SingleTableSubclassTestEntity(String, String, String) - Constructor for class org.fastnate.generator.test.inheritance.SingleTableSubclassTestEntity
Creates a new instance of SingleTableSubclassTestEntity.
SqlEmWriter - Class in org.fastnate.generator.test
Writes SQL to an EntityManager.
SqlEmWriter() - Constructor for class org.fastnate.generator.test.SqlEmWriter
 
SubclassEntity - Interface in org.fastnate.generator.test.inheritance
The properties for all superclass test entities to have one similar test in InheritanceTest.
SuccessorData - Class in org.fastnate.data.test
Data provider to test more than one in the EntityImporter.
SuccessorData() - Constructor for class org.fastnate.data.test.SuccessorData
 
SuperclassEntity - Interface in org.fastnate.generator.test.inheritance
The properties for all superclass test entities to have one similar test in InheritanceTest.

T

TablePerClassSubclassTestEntity - Class in org.fastnate.generator.test.inheritance
Test class that ensures that an entity hierarchy with InheritanceType.SINGLE_TABLE is written correctly.
TablePerClassSubclassTestEntity(long, String, String) - Constructor for class org.fastnate.generator.test.inheritance.TablePerClassSubclassTestEntity
Creates a new instance of TablePerClassSubclassTestEntity.
TablePerClassSuperclassTestEntity - Class in org.fastnate.generator.test.inheritance
The superclass of TablePerClassSubclassTestEntity to test InheritanceType.TABLE_PER_CLASS.
TablePerClassSuperclassTestEntity(long, String) - Constructor for class org.fastnate.generator.test.inheritance.TablePerClassSuperclassTestEntity
Creates a new instance of TablePerClassSuperclassTestEntity.
tearDown() - Method in class org.fastnate.generator.test.AbstractEntitySqlGeneratorTest
Close the entity manager factory.
tearDown() - Method in class org.fastnate.maven.test.MavenPluginTest
Close the entity manager factory.
testBasicMaps() - Method in class org.fastnate.generator.test.collections.MapsTest
Tests to write maps with content of basic type.
TestData - Class in org.fastnate.data.test
Data provider to test the EntityImporter.
TestData() - Constructor for class org.fastnate.data.test.TestData
 
testEmbedded() - Method in class org.fastnate.data.EntityImporterTest
Tests the SQL generation using the Entity Importer.
testEmbedded() - Method in class org.fastnate.generator.test.embedded.EmbeddedTest
Tests to write embedded properties.
testEmbedded() - Method in class org.fastnate.maven.test.MavenPluginTest
Tests that the expected entities are available.
TestEmbeddedId - Class in org.fastnate.generator.test.embedded
The embedded id of an entry.
TestEmbeddedId() - Constructor for class org.fastnate.generator.test.embedded.TestEmbeddedId
 
TestEmbeddedProperties - Class in org.fastnate.generator.test.embedded
An embedded property of an entry.
TestEmbeddedProperties() - Constructor for class org.fastnate.generator.test.embedded.TestEmbeddedProperties
 
TestEmbeddingEntity - Class in org.fastnate.generator.test.embedded
Entity to test embedded properties and required fields.
TestEmbeddingEntity() - Constructor for class org.fastnate.generator.test.embedded.TestEmbeddingEntity
 
testEmptyEntity() - Method in class org.fastnate.generator.test.ids.IdsTest
Tests to write an entity with just the generated ID.
TestEntity - Class in org.fastnate.data.test
Test entity for the data provider test.
TestEntity(TestEntity, String) - Constructor for class org.fastnate.data.test.TestEntity
Creates a new instance of TestEntity.
testEntityMaps() - Method in class org.fastnate.generator.test.collections.MapsTest
Tests to write maps with entities.
TestEnum - Enum in org.fastnate.generator.test.primitive
Enumeration for testing persistance.
testEnumProperties() - Method in class org.fastnate.generator.test.primitive.PrimitiveEntityTest
Tests to write enum properties in an entity.
testExplicitAccess() - Method in class org.fastnate.generator.test.access.AccessTest
Tests that an explict access type is taken into account.
testFixedId() - Method in class org.fastnate.generator.test.ids.IdsTest
Tests to write entities with fixed ids.
testIdentityGenerator() - Method in class org.fastnate.generator.test.ids.IdsTest
Tests to write an entity with an identity column.
testImplicitAccess() - Method in class org.fastnate.generator.test.access.AccessTest
Tests that an implict access type is taken into account.
testJoinedInheritance() - Method in class org.fastnate.generator.test.inheritance.InheritanceTest
Tests to write an entity hierarchy with InheritanceType.JOINED.
testLobs() - Method in class org.fastnate.generator.test.primitive.PrimitiveEntityTest
Tests to write BLOBs and CLOBs.
testMappedSuperclasses() - Method in class org.fastnate.generator.test.inheritance.InheritanceTest
Tests to write sub classes of mapped superclasses.
testOverrides() - Method in class org.fastnate.generator.test.overrides.OverridesTest
Tests to write an entity with different AttributeOverrides and AssociationOverrides.
testPlural() - Method in class org.fastnate.generator.test.collections.CollectionsTest
Tests to write plural properties.
testPrimitiveProperties() - Method in class org.fastnate.generator.test.primitive.PrimitiveEntityTest
Tests to write primitive properties in an entity.
testRecursion() - Method in class org.fastnate.generator.test.recursion.RecursiveEntityTest
Tests to write recursion.
TestRecursiveEntity - Class in org.fastnate.generator.test.recursion
Entity to test recursion in SQL generation.
TestRecursiveEntity(TestRecursiveEntity, String) - Constructor for class org.fastnate.generator.test.recursion.TestRecursiveEntity
Creates a new instance of TestRecursiveEntity.
TestRequiredEmbeddedProperties - Class in org.fastnate.generator.test.embedded
An embedded property of an entry.
TestRequiredEmbeddedProperties() - Constructor for class org.fastnate.generator.test.embedded.TestRequiredEmbeddedProperties
 
testSequenceGenerator() - Method in class org.fastnate.generator.test.ids.IdsTest
Tests to write an entity with a sequence generator.
testSerializableProperties() - Method in class org.fastnate.generator.test.primitive.PrimitiveEntityTest
Tests to write primitive properties in an entity.
testSingleTableInheritance() - Method in class org.fastnate.generator.test.inheritance.InheritanceTest
Tests to write an entity hierarchy with InheritanceType.SINGLE_TABLE.
testTablePerClassInheritance() - Method in class org.fastnate.generator.test.inheritance.InheritanceTest
Tests to write an entity hierarchy with InheritanceType.TABLE_PER_CLASS.
testTemporalProperties() - Method in class org.fastnate.generator.test.primitive.PrimitiveEntityTest
Tests to write temporal properties in an entity.
testTransientProperties() - Method in class org.fastnate.generator.test.primitive.PrimitiveEntityTest
Tests that transient properties are not written.
ToOverrideEntity - Class in org.fastnate.generator.test.overrides
Contains JPA properties that are reconfigured in OverrideEntity.
ToOverrideEntity() - Constructor for class org.fastnate.generator.test.overrides.ToOverrideEntity
 
toString() - Method in class org.fastnate.data.test.TestEntity
 
toString() - Method in class org.fastnate.generator.test.BaseTestEntity
 
toString() - Method in class org.fastnate.generator.test.ids.IdTestEntity
 
toString() - Method in class org.fastnate.generator.test.inheritance.JoinedSuperclassTestEntity
 
toString() - Method in class org.fastnate.generator.test.inheritance.MappedSubclassTestEntity
 
toString() - Method in class org.fastnate.generator.test.inheritance.MappedSuperclassTestEntity
 
toString() - Method in class org.fastnate.generator.test.inheritance.TablePerClassSuperclassTestEntity
 
toString() - Method in class org.fastnate.generator.test.primitive.PrimitiveTestEntity
 

V

valueOf(String) - Static method in enum org.fastnate.generator.test.primitive.TestEnum
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.fastnate.generator.test.primitive.TestEnum
Returns an array containing the constants of this enum type, in the order they are declared.

W

write(E) - Method in class org.fastnate.generator.test.AbstractEntitySqlGeneratorTest
Writes the entity with the generator.
write(char[], int, int) - Method in class org.fastnate.generator.test.SqlEmWriter
 
A B C E F G H I J M N O P R S T V W 
Skip navigation links

Copyright © 2016 fastnate.org. All rights reserved.