org.apache.tinkerpop.gremlin.structure.Element.keys()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(6.8k)|赞(0)|评价(0)|浏览(268)

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

Element.keys介绍

[英]Get the keys of the properties associated with this element. The default implementation iterators the properties and stores the keys into a HashSet.
[中]获取与此元素关联的属性的键。默认实现迭代器属性并将键存储到哈希集中。

代码示例

代码示例来源:origin: apache/tinkerpop

  1. private Collection<String> getElementKeysAndNormalizeIfRequired(final Element element) {
  2. final Collection<String> keys;
  3. if (normalize) {
  4. keys = new ArrayList<>();
  5. keys.addAll(element.keys());
  6. Collections.sort((List<String>) keys);
  7. } else
  8. keys = element.keys();
  9. return keys;
  10. }

代码示例来源:origin: apache/tinkerpop

  1. @Override
  2. public Set<String> keys() {
  3. return this.element.keys().stream().filter(key -> !computeKeys.contains(key)).collect(Collectors.toSet());
  4. }

代码示例来源:origin: apache/tinkerpop

  1. /**
  2. * Retrieve the properties associated with a particular element.
  3. * The result is a Object[] where odd indices are String keys and even indices are the values.
  4. *
  5. * @param element the element to retrieve properties from
  6. * @param includeId include Element.ID in the key/value list
  7. * @param includeLabel include Element.LABEL in the key/value list
  8. * @param propertiesToCopy the properties to include with an empty list meaning copy all properties
  9. * @return a key/value array of properties where odd indices are String keys and even indices are the values.
  10. */
  11. public static Object[] getProperties(final Element element, final boolean includeId, final boolean includeLabel, final Set<String> propertiesToCopy) {
  12. final List<Object> keyValues = new ArrayList<>();
  13. if (includeId) {
  14. keyValues.add(T.id);
  15. keyValues.add(element.id());
  16. }
  17. if (includeLabel) {
  18. keyValues.add(T.label);
  19. keyValues.add(element.label());
  20. }
  21. element.keys().forEach(key -> {
  22. if (propertiesToCopy.isEmpty() || propertiesToCopy.contains(key)) {
  23. keyValues.add(key);
  24. keyValues.add(element.value(key));
  25. }
  26. });
  27. return keyValues.toArray(new Object[keyValues.size()]);
  28. }

代码示例来源:origin: org.apache.tinkerpop/gremlin-core

  1. private Collection<String> getElementKeysAndNormalizeIfRequired(final Element element) {
  2. final Collection<String> keys;
  3. if (normalize) {
  4. keys = new ArrayList<>();
  5. keys.addAll(element.keys());
  6. Collections.sort((List<String>) keys);
  7. } else
  8. keys = element.keys();
  9. return keys;
  10. }

代码示例来源:origin: org.apache.tinkerpop/gremlin-core

  1. @Override
  2. public Set<String> keys() {
  3. return this.element.keys().stream().filter(key -> !computeKeys.contains(key)).collect(Collectors.toSet());
  4. }

代码示例来源:origin: HuygensING/timbuctoo

  1. private Set<String> getKeys(Element element, Set<String> propertiesToIgnore) {
  2. return element.keys().stream().filter(key -> !propertiesToIgnore.contains(key)).collect(Collectors.toSet());
  3. }

代码示例来源:origin: MartinHaeusler/chronos

  1. public static void mergeProperties(final Element element, final Element storeElement, final Element ancestorElement,
  2. final PropertyConflictResolutionStrategy strategy) {
  3. checkNotNull(element, "Precondition violation - argument 'element' must not be NULL!");
  4. checkNotNull(storeElement, "Precondition violation - argument 'storeElement' must not be NULL!");
  5. checkNotNull(strategy, "Precondition violation - argument 'strategy' must not be NULL!");
  6. // get all element property keys
  7. Set<String> elementKeys = Sets.newHashSet(element.keys());
  8. Set<String> storeElementKeys = Sets.newHashSet(storeElement.keys());
  9. Set<String> allKeys = Sets.union(elementKeys, storeElementKeys);
  10. for (String propertyKey : allKeys) {
  11. mergeSingleProperty(propertyKey, element, storeElement, ancestorElement, strategy);
  12. }
  13. }

代码示例来源:origin: com.syncleus.ferma/ferma

  1. @Override
  2. public Set<String> getPropertyKeys() {
  3. return getElement().keys();
  4. }

代码示例来源:origin: apache/atlas

  1. @Override
  2. public Set<String> getPropertyKeys() {
  3. return getWrappedElement().keys();
  4. }

代码示例来源:origin: Syncleus/Ferma

  1. @Override
  2. public Set<String> getPropertyKeys() {
  3. return getElement().keys();
  4. }

代码示例来源:origin: apache/incubator-atlas

  1. @Override
  2. public Set<String> getPropertyKeys() {
  3. return getWrappedElement().keys();
  4. }

代码示例来源:origin: org.jboss.windup.graph/windup-graph-api

  1. /**
  2. * A string representation of this vertex, showing it's properties in a JSON-like format.
  3. */
  4. default String toPrettyString()
  5. {
  6. Element v = getElement();
  7. StringBuilder result = new StringBuilder();
  8. result.append("[").append(v.toString()).append("=");
  9. result.append("{");
  10. boolean hasSome = false;
  11. for (String propKey : v.keys())
  12. {
  13. hasSome = true;
  14. Iterator<? extends Property<Object>> propVal = v.properties(propKey);
  15. List<Object> propValues = new ArrayList<>();
  16. propVal.forEachRemaining(prop -> propValues.add(prop.value()));
  17. if (propValues.size() == 1)
  18. result.append(propKey).append(": ").append(propValues.get(0));
  19. else
  20. result.append(propKey).append(": ").append(propValues);
  21. result.append(", ");
  22. }
  23. if (hasSome)
  24. {
  25. result.delete(result.length() - 2, result.length());
  26. }
  27. result.append("}]");
  28. return result.toString();
  29. }

代码示例来源:origin: windup/windup

  1. /**
  2. * A string representation of this vertex, showing it's properties in a JSON-like format.
  3. */
  4. default String toPrettyString()
  5. {
  6. Element v = getElement();
  7. StringBuilder result = new StringBuilder();
  8. result.append("[").append(v.toString()).append("=");
  9. result.append("{");
  10. boolean hasSome = false;
  11. for (String propKey : v.keys())
  12. {
  13. hasSome = true;
  14. Iterator<? extends Property<Object>> propVal = v.properties(propKey);
  15. List<Object> propValues = new ArrayList<>();
  16. propVal.forEachRemaining(prop -> propValues.add(prop.value()));
  17. if (propValues.size() == 1)
  18. result.append(propKey).append(": ").append(propValues.get(0));
  19. else
  20. result.append(propKey).append(": ").append(propValues);
  21. result.append(", ");
  22. }
  23. if (hasSome)
  24. {
  25. result.delete(result.length() - 2, result.length());
  26. }
  27. result.append("}]");
  28. return result.toString();
  29. }

代码示例来源:origin: org.apache.tinkerpop/gremlin-core

  1. /**
  2. * Retrieve the properties associated with a particular element.
  3. * The result is a Object[] where odd indices are String keys and even indices are the values.
  4. *
  5. * @param element the element to retrieve properties from
  6. * @param includeId include Element.ID in the key/value list
  7. * @param includeLabel include Element.LABEL in the key/value list
  8. * @param propertiesToCopy the properties to include with an empty list meaning copy all properties
  9. * @return a key/value array of properties where odd indices are String keys and even indices are the values.
  10. */
  11. public static Object[] getProperties(final Element element, final boolean includeId, final boolean includeLabel, final Set<String> propertiesToCopy) {
  12. final List<Object> keyValues = new ArrayList<>();
  13. if (includeId) {
  14. keyValues.add(T.id);
  15. keyValues.add(element.id());
  16. }
  17. if (includeLabel) {
  18. keyValues.add(T.label);
  19. keyValues.add(element.label());
  20. }
  21. element.keys().forEach(key -> {
  22. if (propertiesToCopy.isEmpty() || propertiesToCopy.contains(key)) {
  23. keyValues.add(key);
  24. keyValues.add(element.value(key));
  25. }
  26. });
  27. return keyValues.toArray(new Object[keyValues.size()]);
  28. }

相关文章