SYMBOL INDEX (174 symbols across 25 files) FILE: src/main/java/org/springframework/data/elasticsearch/entities/Article.java class Article (line 18) | @Document(indexName = "articles", type = "article", shards = 1, replicas... method Article (line 43) | public Article() { method Article (line 47) | public Article(String id) { method setId (line 51) | public void setId(String id) { method getId (line 55) | public String getId() { method getTitle (line 59) | public String getTitle() { method setTitle (line 63) | public void setTitle(String title) { method getAuthors (line 67) | public List getAuthors() { method setAuthors (line 71) | public void setAuthors(List authors) { method getPublishedYears (line 75) | public List getPublishedYears() { method setPublishedYears (line 79) | public void setPublishedYears(List publishedYears) { method getScore (line 83) | public int getScore() { method setScore (line 87) | public void setScore(int score) { method getTags (line 91) | public Collection getTags() { method setTags (line 95) | public void setTags(Collection tags) { FILE: src/main/java/org/springframework/data/elasticsearch/entities/ArticleBuilder.java class ArticleBuilder (line 8) | public class ArticleBuilder { method ArticleBuilder (line 12) | public ArticleBuilder(String id) { method title (line 16) | public ArticleBuilder title(String title) { method addAuthor (line 21) | public ArticleBuilder addAuthor(String author) { method addPublishedYear (line 26) | public ArticleBuilder addPublishedYear(Integer year) { method score (line 31) | public ArticleBuilder score(int score) { method build (line 36) | public Article build() { method addTag (line 40) | public ArticleBuilder addTag(String tag) { method buildIndex (line 51) | public IndexQuery buildIndex() { FILE: src/main/java/org/springframework/data/elasticsearch/entities/Author.java class Author (line 22) | public class Author { method getId (line 27) | public String getId() { method setId (line 31) | public void setId(String id) { method getName (line 35) | public String getName() { method setName (line 39) | public void setName(String name) { FILE: src/main/java/org/springframework/data/elasticsearch/entities/Book.java class Book (line 13) | @Document(indexName = "book",type = "book" , shards = 1, replicas = 0, i... method getBuckets (line 23) | public Map> getBuckets() { method setBuckets (line 27) | public void setBuckets(Map> buckets) { method Book (line 34) | public Book(){} method Book (line 36) | public Book(String id, String name,Long version) { method getId (line 42) | public String getId() { method setId (line 46) | public void setId(String id) { method getName (line 50) | public String getName() { method setName (line 54) | public void setName(String name) { method getPrice (line 58) | public Long getPrice() { method setPrice (line 62) | public void setPrice(Long price) { method getVersion (line 66) | public long getVersion() { method setVersion (line 70) | public void setVersion(long version) { FILE: src/main/java/org/springframework/data/elasticsearch/entities/Car.java class Car (line 23) | public class Car { method getName (line 28) | public String getName() { method setName (line 32) | public void setName(String name) { method getModel (line 36) | public String getModel() { method setModel (line 40) | public void setModel(String model) { FILE: src/main/java/org/springframework/data/elasticsearch/entities/GirlFriend.java class GirlFriend (line 27) | public class GirlFriend { method getName (line 36) | public String getName() { method setName (line 40) | public void setName(String name) { method getType (line 44) | public String getType() { method setType (line 48) | public void setType(String type) { method getCars (line 52) | public List getCars() { method setCars (line 56) | public void setCars(List cars) { FILE: src/main/java/org/springframework/data/elasticsearch/entities/OperationDocument.java class OperationDocument (line 12) | @Document(indexName = "operations", type = "operation") method getId (line 45) | public Long getId() { method setId (line 49) | public void setId(Long id) { method getOperationName (line 53) | public String getOperationName() { method setOperationName (line 57) | public void setOperationName(String operationName) { method getDateUp (line 61) | public Date getDateUp() { method setDateUp (line 65) | public void setDateUp(Date dateUp) { method getSomeTransientData (line 69) | public String getSomeTransientData() { method setSomeTransientData (line 73) | public void setSomeTransientData(String someTransientData) { method getSectors (line 77) | public List getSectors() { method setSectors (line 81) | public void setSectors(List sectors) { FILE: src/main/java/org/springframework/data/elasticsearch/entities/Person.java class Person (line 32) | @Document( indexName = "person" , type = "user", indexStoreType = "memor... method getId (line 43) | public String getId() { method setId (line 47) | public void setId(String id) { method getName (line 51) | public String getName() { method setName (line 55) | public void setName(String name) { method getCar (line 59) | public List getCar() { method setCar (line 63) | public void setCar(List car) { FILE: src/main/java/org/springframework/data/elasticsearch/entities/PersonMultipleLevelNested.java class PersonMultipleLevelNested (line 32) | @Document(indexName = "person-multiple-level-nested", type = "user", ind... method getId (line 46) | public String getId() { method setId (line 50) | public void setId(String id) { method getName (line 54) | public String getName() { method setName (line 58) | public void setName(String name) { method getGirlFriends (line 62) | public List getGirlFriends() { method setGirlFriends (line 66) | public void setGirlFriends(List girlFriends) { method getCars (line 70) | public List getCars() { method setCars (line 74) | public void setCars(List cars) { FILE: src/main/java/org/springframework/data/elasticsearch/entities/Product.java class Product (line 6) | @Document(indexName = "book",type = "book" , shards = 1, replicas = 0, i... method Product (line 14) | public Product() { method Product (line 17) | public Product(String id, String name, String description, boolean ena... method getId (line 25) | public String getId() { method setId (line 29) | public void setId(String id) { method getName (line 33) | public String getName() { method setName (line 37) | public void setName(String name) { method getDescription (line 41) | public String getDescription() { method setDescription (line 45) | public void setDescription(String description) { method isEnabled (line 49) | public boolean isEnabled() { method setEnabled (line 53) | public void setEnabled(boolean enabled) { FILE: src/main/java/org/springframework/data/elasticsearch/entities/Sector.java class Sector (line 6) | public class Sector { method getId (line 11) | public int getId() { method setId (line 15) | public void setId(int id) { method getSectorName (line 19) | public String getSectorName() { method setSectorName (line 23) | public void setSectorName(String sectorName) { FILE: src/main/java/org/springframework/data/elasticsearch/repositories/OperationDocumentRepository.java type OperationDocumentRepository (line 9) | public interface OperationDocumentRepository extends ElasticsearchRepos... FILE: src/main/java/org/springframework/data/elasticsearch/repositories/SampleArticleRepository.java type SampleArticleRepository (line 6) | public interface SampleArticleRepository extends ElasticsearchRepository... FILE: src/main/java/org/springframework/data/elasticsearch/repositories/SampleProductRepository.java type SampleProductRepository (line 9) | public interface SampleProductRepository extends ElasticsearchRepository... method findByName (line 10) | List findByName(String name); method findByName (line 11) | List findByName(String name, Pageable pageable); method findByNameAndId (line 12) | List findByNameAndId(String name, String id); FILE: src/main/java/org/springframework/data/elasticsearch/repositories/book/SampleBookRepository.java type SampleBookRepository (line 9) | public interface SampleBookRepository extends ElasticsearchRepository findByNameAndPrice(String name, Integer price, Pageable pag... method findByNameOrPrice (line 11) | Page findByNameOrPrice(String name, Integer price, Pageable page... method findByName (line 12) | Page findByName(String name, Pageable pageable); FILE: src/test/java/org/springframework/data/elasticsearch/ComplexNestedTypeContactTests.java class ComplexNestedTypeContactTests (line 29) | @RunWith(SpringJUnit4ClassRunner.class) method before (line 36) | @Before method test (line 43) | @Test FILE: src/test/java/org/springframework/data/elasticsearch/entities/Contact.java class Contact (line 14) | @Document(indexName = "test-contact-test",type = "contact-test-type", sh... method getId (line 23) | public String getId() { method setId (line 27) | public void setId(String id) { method getName (line 31) | public String getName() { method setName (line 35) | public void setName(String name) { method getManuscripts (line 39) | public List getManuscripts() { method setManuscripts (line 43) | public void setManuscripts(List manuscripts) { FILE: src/test/java/org/springframework/data/elasticsearch/entities/Manuscript.java class Manuscript (line 13) | public class Manuscript { method getTitle (line 22) | public String getTitle() { method setTitle (line 26) | public void setTitle(String title) { method getStatus (line 30) | public String getStatus() { method setStatus (line 34) | public void setStatus(String status) { method getAbstractText (line 38) | public String getAbstractText() { method setAbstractText (line 42) | public void setAbstractText(String abstractText) { method getRole (line 46) | public List getRole() { method setRole (line 50) | public void setRole(List role) { FILE: src/test/java/org/springframework/data/elasticsearch/entities/Role.java class Role (line 6) | public class Role { method getName (line 10) | public String getName() { method setName (line 14) | public void setName(String name) { FILE: src/test/java/org/springframework/data/elasticsearch/repositories/ElasticsearchFacetTests.java class ElasticsearchFacetTests (line 32) | @RunWith(SpringJUnit4ClassRunner.class) method before (line 46) | @Before method shouldReturnFacetedAuthorsForGivenQueryWithDefaultOrder (line 65) | @Test method shouldReturnFacetedAuthorsForGivenFilteredQuery (line 93) | @Test method shouldExcludeTermsFromFacetedAuthorsForGivenQuery (line 120) | @Test method shouldReturnFacetedAuthorsForGivenQueryOrderedByTerm (line 142) | @Test method shouldReturnFacetedAuthorsForGivenQueryOrderedByCountAsc (line 173) | @Test method shouldReturnFacetedYearsForGivenQuery (line 203) | @Test method shouldReturnSingleFacetOverYearsAndAuthorsForGivenQuery (line 233) | @Test method shouldReturnFacetedYearsAndFacetedAuthorsForGivenQuery (line 279) | @Test method shouldReturnFacetedYearsForNativeFacet (line 329) | @Test method shouldFilterResultByRegexForGivenQuery (line 358) | @Test method shouldReturnAllTermsForGivenQuery (line 380) | @Test method shouldReturnRangeFacetForGivenQuery (line 398) | @Test method shouldReturnKeyValueRangeFacetForGivenQuery (line 435) | @Test FILE: src/test/java/org/springframework/data/elasticsearch/repositories/NestedObjectTests.java class NestedObjectTests (line 52) | @RunWith(SpringJUnit4ClassRunner.class) method before (line 62) | @Before method shouldIndexInnerObject (line 77) | @Test method shouldIndexInitialLevelNestedObject (line 94) | @Test method shouldIndexMultipleLevelNestedObject (line 155) | @Test method shouldSearchUsingNestedQueryOnMultipleLevelNestedObject (line 172) | @Test method createPerson (line 199) | private List createPerson() { FILE: src/test/java/org/springframework/data/elasticsearch/repositories/OperationDocumentRepositoryTest.java class OperationDocumentRepositoryTest (line 13) | @RunWith(SpringJUnit4ClassRunner.class) method test (line 23) | @Test FILE: src/test/java/org/springframework/data/elasticsearch/repositories/SampleArticleRepositoryTest.java class SampleArticleRepositoryTest (line 19) | @RunWith(SpringJUnit4ClassRunner.class) method emptyData (line 26) | @Before method shouldIndexSingleBookEntity (line 31) | @Test FILE: src/test/java/org/springframework/data/elasticsearch/repositories/SampleBookRepositoryTest.java class SampleBookRepositoryTest (line 29) | @RunWith(SpringJUnit4ClassRunner.class) method emptyData (line 39) | @Before method shouldIndexSingleBookEntity (line 44) | @Test method shouldBulkIndexMultipleBookEntities (line 58) | @Test method crudRepositoryTest (line 72) | @Test method shouldCountAllElementsInIndex (line 106) | @Test method shouldExecuteCustomSearchQueries (line 121) | @Test method shouldReturnBooksForCustomMethodsWithAndCriteria (line 151) | @Test method shouldReturnBooksWithName (line 163) | @Test method shouldReturnBooksForGivenBucket (line 173) | @Test method shouldReturnBooksForGivenBucketUsingTemplate (line 199) | @Test method shouldReturnBooksForCustomMethodsWithOrCriteria (line 231) | @Ignore method shouldGiveIterableOfBooks (line 244) | @Test FILE: src/test/java/org/springframework/data/elasticsearch/repositories/SampleProductRepositoryTest.java class SampleProductRepositoryTest (line 17) | @RunWith(SpringJUnit4ClassRunner.class) method emptyData (line 24) | @Before method shouldReturnListOfProductsByName (line 29) | @Test method shouldReturnListOfBookByNameWithPageable (line 47) | @Test method shouldReturnListOfProductsForGivenNameAndId (line 65) | @Test