Beispiel #1
0
//JAVA TO C# CONVERTER WARNING: Java wildcard generics have no direct equivalent in .NET:
//ORIGINAL LINE: private org.neo4j.kernel.api.index.IndexEntryUpdate<?> add(long nodeId, Object propertyValue)
        private IndexEntryUpdate <object> Add(long nodeId, object propertyValue)
        {
            return(IndexQueryHelper.add(nodeId, _index.schema(), propertyValue));
        }
Beispiel #2
0
//JAVA TO C# CONVERTER WARNING: Java wildcard generics have no direct equivalent in .NET:
//ORIGINAL LINE: private org.neo4j.kernel.api.index.IndexEntryUpdate<?> add(long nodeId, Object value)
        private IndexEntryUpdate <object> Add(long nodeId, object value)
        {
            return(IndexQueryHelper.add(nodeId, Index.schema(), value));
        }
Beispiel #3
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: private void addUpdate(org.neo4j.kernel.api.index.IndexPopulator populator, long nodeId, Object value) throws java.io.IOException, org.neo4j.kernel.api.exceptions.index.IndexEntryConflictException
        private void AddUpdate(IndexPopulator populator, long nodeId, object value)
        {
            populator.Add(singletonList(IndexQueryHelper.add(nodeId, _index.schema(), value)));
        }
Beispiel #4
0
//JAVA TO C# CONVERTER WARNING: Java wildcard generics have no direct equivalent in .NET:
//ORIGINAL LINE: private org.neo4j.kernel.api.index.IndexEntryUpdate<?> add(long nodeId, Object... values)
        private IndexEntryUpdate <object> Add(long nodeId, params object[] values)
        {
            return(IndexQueryHelper.add(nodeId, _schemaIndexDescriptor.schema(), values));
        }