org.eclipse.persistence.internal.helper.Helper.concatenateUniqueVectors()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(7.7k)|赞(0)|评价(0)|浏览(122)

本文整理了Java中org.eclipse.persistence.internal.helper.Helper.concatenateUniqueVectors()方法的一些代码示例,展示了Helper.concatenateUniqueVectors()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Helper.concatenateUniqueVectors()方法的具体详情如下:
包路径:org.eclipse.persistence.internal.helper.Helper
类名称:Helper
方法名:concatenateUniqueVectors

Helper.concatenateUniqueVectors介绍

[英]Return a new vector with no duplicated values.
[中]返回没有重复值的新向量。

代码示例

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

  1. /**
  2. * Override to control order of uniqueTables, child tablenames should be first since
  3. * getDefaultRootElement on an XMLDescriptor will return the first table.
  4. */
  5. protected void updateTables(){
  6. // Unique is required because the builder can add the same table many times.
  7. Vector<DatabaseTable> childTables = getDescriptor().getTables();
  8. Vector<DatabaseTable> parentTables = getParentDescriptor().getTables();
  9. Vector<DatabaseTable> uniqueTables = Helper.concatenateUniqueVectors(childTables, parentTables);
  10. getDescriptor().setTables(uniqueTables);
  11. // After filtering out any duplicate tables, set the default table
  12. // if one is not already set. This must be done now before any other
  13. // initialization occurs. In a joined strategy case, the default
  14. // table will be at an index greater than 0. Which is where
  15. // setDefaultTable() assumes it is. Therefore, we need to send the
  16. // actual default table instead.
  17. if (childTables.isEmpty()) {
  18. getDescriptor().setInternalDefaultTable();
  19. } else {
  20. getDescriptor().setInternalDefaultTable(uniqueTables.get(uniqueTables.indexOf(childTables.get(0))));
  21. }
  22. }

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

  1. /**
  2. * INTERNAL:
  3. * set the tables on the child descriptor
  4. * overridden in org.eclipse.persistence.internal.oxm.QNameInheritancePolicy
  5. */
  6. protected void updateTables(){
  7. // Unique is required because the builder can add the same table many times.
  8. Vector<DatabaseTable> childTables = getDescriptor().getTables();
  9. Vector<DatabaseTable> parentTables = getParentDescriptor().getTables();
  10. Vector<DatabaseTable> uniqueTables = Helper.concatenateUniqueVectors(parentTables, childTables);
  11. getDescriptor().setTables(uniqueTables);
  12. // After filtering out any duplicate tables, set the default table
  13. // if one is not already set. This must be done now before any other
  14. // initialization occurs. In a joined strategy case, the default
  15. // table will be at an index greater than 0. Which is where
  16. // setDefaultTable() assumes it is. Therefore, we need to send the
  17. // actual default table instead.
  18. if (childTables.isEmpty()) {
  19. getDescriptor().setInternalDefaultTable();
  20. } else {
  21. getDescriptor().setInternalDefaultTable(uniqueTables.get(uniqueTables.indexOf(childTables.get(0))));
  22. }
  23. }

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

  1. /**
  2. * INTERNAL:
  3. * set the tables on the child descriptor
  4. * overridden in org.eclipse.persistence.internal.oxm.QNameInheritancePolicy
  5. */
  6. protected void updateTables(){
  7. // Unique is required because the builder can add the same table many times.
  8. Vector<DatabaseTable> childTables = getDescriptor().getTables();
  9. Vector<DatabaseTable> parentTables = getParentDescriptor().getTables();
  10. Vector<DatabaseTable> uniqueTables = Helper.concatenateUniqueVectors(parentTables, childTables);
  11. getDescriptor().setTables(uniqueTables);
  12. // After filtering out any duplicate tables, set the default table
  13. // if one is not already set. This must be done now before any other
  14. // initialization occurs. In a joined strategy case, the default
  15. // table will be at an index greater than 0. Which is where
  16. // setDefaultTable() assumes it is. Therefore, we need to send the
  17. // actual default table instead.
  18. if (childTables.isEmpty()) {
  19. getDescriptor().setInternalDefaultTable();
  20. } else {
  21. getDescriptor().setInternalDefaultTable(uniqueTables.get(uniqueTables.indexOf(childTables.get(0))));
  22. }
  23. }

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

  1. /**
  2. * INTERNAL:
  3. * set the tables on the child descriptor
  4. * overridden in org.eclipse.persistence.internal.oxm.QNameInheritancePolicy
  5. */
  6. protected void updateTables(){
  7. // Unique is required because the builder can add the same table many times.
  8. Vector<DatabaseTable> childTables = getDescriptor().getTables();
  9. Vector<DatabaseTable> parentTables = getParentDescriptor().getTables();
  10. Vector<DatabaseTable> uniqueTables = Helper.concatenateUniqueVectors(parentTables, childTables);
  11. getDescriptor().setTables(uniqueTables);
  12. // After filtering out any duplicate tables, set the default table
  13. // if one is not already set. This must be done now before any other
  14. // initialization occurs. In a joined strategy case, the default
  15. // table will be at an index greater than 0. Which is where
  16. // setDefaultTable() assumes it is. Therefore, we need to send the
  17. // actual default table instead.
  18. if (childTables.isEmpty()) {
  19. getDescriptor().setInternalDefaultTable();
  20. } else {
  21. getDescriptor().setInternalDefaultTable(uniqueTables.get(uniqueTables.indexOf(childTables.get(0))));
  22. }
  23. }

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

  1. /**
  2. * Override to control order of uniqueTables, child tablenames should be first since
  3. * getDefaultRootElement on an XMLDescriptor will return the first table.
  4. */
  5. protected void updateTables(){
  6. // Unique is required because the builder can add the same table many times.
  7. Vector<DatabaseTable> childTables = getDescriptor().getTables();
  8. Vector<DatabaseTable> parentTables = getParentDescriptor().getTables();
  9. Vector<DatabaseTable> uniqueTables = Helper.concatenateUniqueVectors(childTables, parentTables);
  10. getDescriptor().setTables(uniqueTables);
  11. if(getDescriptor().isXMLDescriptor() && getParentDescriptor().isXMLDescriptor()){
  12. if(((XMLDescriptor)getDescriptor()).getDefaultRootElementField() == null){
  13. ((XMLDescriptor)getDescriptor()).setDefaultRootElementField(((XMLDescriptor)getParentDescriptor()).getDefaultRootElementField());
  14. }
  15. }
  16. // After filtering out any duplicate tables, set the default table
  17. // if one is not already set. This must be done now before any other
  18. // initialization occurs. In a joined strategy case, the default
  19. // table will be at an index greater than 0. Which is where
  20. // setDefaultTable() assumes it is. Therefore, we need to send the
  21. // actual default table instead.
  22. if (childTables.isEmpty()) {
  23. getDescriptor().setInternalDefaultTable();
  24. } else {
  25. getDescriptor().setInternalDefaultTable(uniqueTables.get(uniqueTables.indexOf(childTables.get(0))));
  26. }
  27. }

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

  1. /**
  2. * Override to control order of uniqueTables, child tablenames should be first since
  3. * getDefaultRootElement on an XMLDescriptor will return the first table.
  4. */
  5. protected void updateTables(){
  6. // Unique is required because the builder can add the same table many times.
  7. Vector<DatabaseTable> childTables = getDescriptor().getTables();
  8. Vector<DatabaseTable> parentTables = getParentDescriptor().getTables();
  9. Vector<DatabaseTable> uniqueTables = Helper.concatenateUniqueVectors(childTables, parentTables);
  10. getDescriptor().setTables(uniqueTables);
  11. if(getDescriptor().isXMLDescriptor() && getParentDescriptor().isXMLDescriptor()){
  12. if(((XMLDescriptor)getDescriptor()).getDefaultRootElementField() == null){
  13. ((XMLDescriptor)getDescriptor()).setDefaultRootElementField(((XMLDescriptor)getParentDescriptor()).getDefaultRootElementField());
  14. }
  15. }
  16. // After filtering out any duplicate tables, set the default table
  17. // if one is not already set. This must be done now before any other
  18. // initialization occurs. In a joined strategy case, the default
  19. // table will be at an index greater than 0. Which is where
  20. // setDefaultTable() assumes it is. Therefore, we need to send the
  21. // actual default table instead.
  22. if (childTables.isEmpty()) {
  23. getDescriptor().setInternalDefaultTable();
  24. } else {
  25. getDescriptor().setInternalDefaultTable(uniqueTables.get(uniqueTables.indexOf(childTables.get(0))));
  26. }
  27. }

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

  1. setHistoricalTables(Helper.concatenateUniqueVectors(parentDescriptor.getHistoryPolicy().getHistoricalTables(), getHistoricalTables()));
  2. setStartFields(Helper.concatenateUniqueVectors(parentDescriptor.getHistoryPolicy().getStartFields(), getStartFields()));
  3. setEndFields(Helper.concatenateUniqueVectors(parentDescriptor.getHistoryPolicy().getEndFields(), getEndFields()));

相关文章

Helper类方法