Esempio n. 1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @SuppressWarnings("boxing") public IndexedEntityRepresentation(org.neo4j.graphdb.Relationship rel, String key, String value, IndexRepresentation indexRepresentation)
        public IndexedEntityRepresentation(Relationship rel, string key, string value, IndexRepresentation indexRepresentation) : this(new RelationshipRepresentation(rel), rel.Id, key, value, indexRepresentation)
        {
        }
Esempio n. 2
0
 private IndexedEntityRepresentation(MappingRepresentation entity, long entityId, string key, string value, IndexRepresentation indexRepresentation) : base(entity.Type)
 {
     this._entity = entity;
     _selfUri     = ValueRepresentation.Uri(indexRepresentation.RelativeUriFor(key, value, entityId));
 }
Esempio n. 3
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @SuppressWarnings("boxing") public IndexedEntityRepresentation(org.neo4j.graphdb.Node node, String key, String value, IndexRepresentation indexRepresentation)
        public IndexedEntityRepresentation(Node node, string key, string value, IndexRepresentation indexRepresentation) : this(new NodeRepresentation(node), node.Id, key, value, indexRepresentation)
        {
        }