com.tinkerpop.blueprints.Element.setProperty()方法的使用及代码示例

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

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

Element.setProperty介绍

[英]Assign a key/value property to the element. If a value already exists for this key, then the previous key/value is overwritten.
[中]为元素指定键/值属性。如果此键的值已存在,则覆盖上一个键/值。

代码示例

代码示例来源:origin: com.tinkerpop.blueprints/blueprints-core

  1. public void setProperty(final String key, final Object value) {
  2. this.baseElement.setProperty(key, value);
  3. }

代码示例来源:origin: gentics/mesh

  1. @Override
  2. public void init(final Element element, final Class<?> kind) {
  3. element.setProperty(this.typeResolutionKey, kind.getSimpleName());
  4. }

代码示例来源:origin: com.tinkerpop.blueprints/blueprints-core

  1. /**
  2. * Set the properties of the provided element using the provided key value pairs.
  3. * The var args of Objects must be divisible by 2. All odd elements in the array must be a String key.
  4. *
  5. * @param element the element to set the properties of
  6. * @param keysValues the key value pairs of the properties
  7. */
  8. public static void setProperties(final Element element, final Object... keysValues) {
  9. if (keysValues.length % 2 != 0)
  10. throw new IllegalArgumentException("The object var args must be divisible by 2");
  11. for (int i = 0; i < keysValues.length; i = i + 2) {
  12. element.setProperty((String) keysValues[i], keysValues[i + 1]);
  13. }
  14. }

代码示例来源:origin: com.tinkerpop.blueprints/blueprints-core

  1. public void setProperty(final String key, final Object value) {
  2. if (propertyBased && key.equals(IdGraph.ID)) {
  3. throw new IllegalArgumentException("Unable to set value for reserved property " + IdGraph.ID);
  4. }
  5. baseElement.setProperty(key, value);
  6. }

代码示例来源:origin: com.tinkerpop.blueprints/blueprints-core

  1. /**
  2. * Set the properties of the provided element using the provided map.
  3. *
  4. * @param element the element to set the properties of
  5. * @param properties the properties to set as a Map
  6. */
  7. public static void setProperties(final Element element, final Map<String, Object> properties) {
  8. for (Map.Entry<String, Object> property : properties.entrySet()) {
  9. element.setProperty(property.getKey(), property.getValue());
  10. }
  11. }

代码示例来源:origin: com.tinkerpop.blueprints/blueprints-core

  1. private void addProperties(final Element element, final Map<String, Object> map) {
  2. for (Map.Entry<String, Object> entry : map.entrySet()) {
  3. element.setProperty(entry.getKey(), entry.getValue());
  4. }
  5. }

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

  1. @Override
  2. public <U> void setProperty(String propertyName, U value) {
  3. try {
  4. wrappedElement.setProperty(propertyName, value);
  5. } catch (SchemaViolationException e) {
  6. throw new AtlasSchemaViolationException(e);
  7. }
  8. }

代码示例来源:origin: atlanmod/NeoEMF

  1. @Override
  2. public void setProperty(String key, Object value) {
  3. checkArgument(!propertyBased || !key.equals(IdGraph.ID), "Unable to set value for reserved property %s", IdGraph.ID);
  4. base.setProperty(key, value);
  5. }

代码示例来源:origin: BrynCooke/totorom

  1. @Override
  2. public <T extends FramedElement> void init(Element element, Class<T> kind) {
  3. String clazz = element.getProperty("java_class");
  4. if (clazz == null) {
  5. element.setProperty("java_class", kind.getName());
  6. }
  7. }
  8. };

代码示例来源:origin: com.tinkerpop.blueprints/blueprints-core

  1. public void setProperty(final String key, final Object value) {
  2. if (!key.equals(this.graph.getPartitionKey()))
  3. this.baseElement.setProperty(key, value);
  4. }

代码示例来源:origin: atlanmod/NeoEMF

  1. /**
  2. * Copies all {@code propertyKeys} from the {@code source} to the {@code target}.
  3. *
  4. * @param source the source element
  5. * @param target the target element
  6. * @param propertyKeys the property keys to copy
  7. */
  8. private void copyProperties(Element source, Element target, Set<String> propertyKeys) {
  9. propertyKeys.forEach(k -> target.setProperty(k, source.getProperty(k)));
  10. }

代码示例来源:origin: com.tinkerpop.blueprints/blueprints-core

  1. public void setPartition(final String partition) {
  2. this.baseElement.setProperty(this.graph.getPartitionKey(), partition);
  3. }

代码示例来源:origin: com.tinkerpop.blueprints/blueprints-core

  1. /**
  2. * Renames a property by removing the old key and adding the stored value to the new key.
  3. * If property does not exist, nothing occurs.
  4. *
  5. * @param oldKey the key to rename
  6. * @param newKey the key to rename to
  7. * @param elements the elements to rename
  8. */
  9. public static void renameProperty(final String oldKey, final String newKey, final Iterable<Element> elements) {
  10. for (final Element element : elements) {
  11. Object value = element.removeProperty(oldKey);
  12. if (null != value)
  13. element.setProperty(newKey, value);
  14. }
  15. }

代码示例来源:origin: gentics/mesh

  1. /**
  2. * Change type: com.gentics.mesh.core.data.impl.UserImpl to UserImpl
  3. *
  4. * @param element
  5. */
  6. private void migrateType(Element element) {
  7. String type = element.getProperty("ferma_type");
  8. if (!StringUtils.isEmpty(type)) {
  9. int idx = type.lastIndexOf(".");
  10. if (idx != -1) {
  11. type = type.substring(idx + 1);
  12. element.setProperty("ferma_type", type);
  13. }
  14. }
  15. }

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

  1. static void copyProperties(Element source, Element target) {
  2. for (String key : source.getPropertyKeys()) {
  3. Object property = source.getProperty(key);
  4. if (property.getClass().isArray()) {
  5. List<Object> propertyList = new ArrayList<>();
  6. for (int i = 0; i < Array.getLength(property); i++) {
  7. propertyList.add(Array.get(property, i));
  8. }
  9. property = propertyList;
  10. }
  11. target.setProperty(key, property);
  12. }
  13. }

代码示例来源:origin: indexiatech/antiquity

  1. /**
  2. * Copy properties from one element to another.
  3. *
  4. * @param from element to copy properties from
  5. * @param to element to copy properties to
  6. * @param excludedKeys the keys that should be excluded from being copied.
  7. */
  8. public static void copyProps(Element from, Element to, Set<String> excludedKeys) {
  9. for (String k : from.getPropertyKeys()) {
  10. if (excludedKeys != null && excludedKeys.contains(k)) {
  11. continue;
  12. }
  13. to.setProperty(k, from.getProperty(k));
  14. }
  15. }

代码示例来源:origin: com.tinkerpop.blueprints/blueprints-core

  1. /**
  2. * Copy the properties (key and value) from one element to another.
  3. * The properties are preserved on the from element.
  4. * ElementPropertiesRule that share the same key on the to element are overwritten.
  5. *
  6. * @param from the element to copy properties from
  7. * @param to the element to copy properties to
  8. */
  9. public static void copyProperties(final Element from, final Element to) {
  10. for (final String key : from.getPropertyKeys()) {
  11. to.setProperty(key, from.getProperty(key));
  12. }
  13. }

代码示例来源:origin: com.tinkerpop/frames

  1. @Override
  2. public void initElement(Class<?> kind, FramedGraph<?> framedGraph, Element element) {
  3. Class<?> typeHoldingTypeField = typeRegistry.getTypeHoldingTypeField(kind);
  4. if (typeHoldingTypeField != null) {
  5. TypeValue typeValue = kind.getAnnotation(TypeValue.class);
  6. if (typeValue != null) {
  7. element.setProperty(typeHoldingTypeField.getAnnotation(TypeField.class).value(), typeValue.value());
  8. }
  9. }
  10. }

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

  1. @Override
  2. public void initElement(Class<?> kind, FramedGraph<?> framedGraph, Element element) {
  3. Class<?> typeHoldingTypeField = typeRegistry.getTypeHoldingTypeField(kind);
  4. if (typeHoldingTypeField != null) {
  5. TypeValue typeValue = kind.getAnnotation(TypeValue.class);
  6. if (typeValue != null) {
  7. element.setProperty(typeHoldingTypeField.getAnnotation(TypeField.class).value(), typeValue.value());
  8. }
  9. }
  10. }

代码示例来源:origin: com.tinkerpop.blueprints/blueprints-core

  1. /**
  2. * Raises a vertexPropertyRemoved or edgePropertyChanged event.
  3. */
  4. public void setProperty(final String key, final Object value) {
  5. final Object oldValue = this.baseElement.getProperty(key);
  6. this.baseElement.setProperty(key, value);
  7. if (this instanceof Vertex) {
  8. this.onVertexPropertyChanged((Vertex) this, key, oldValue, value);
  9. } else if (this instanceof Edge) {
  10. this.onEdgePropertyChanged((Edge) this, key, oldValue, value);
  11. }
  12. }

相关文章