@@ -3631,7 +3631,7 @@ public DeletedEntity graphDeleteVertex(String graphName, String collectionName,
3631
3631
* @param ifNoneMatchRevision
3632
3632
* If not null the revision of the vertex in the database has to be
3633
3633
* different to return a document.
3634
- * @return
3634
+ * @return DeletedEntity
3635
3635
* @throws ArangoException
3636
3636
*/
3637
3637
public DeletedEntity graphDeleteVertex (
@@ -3656,10 +3656,14 @@ public DeletedEntity graphDeleteVertex(
3656
3656
* only run successfully if the vertex is contained within the graph.
3657
3657
*
3658
3658
* @param graphName
3659
+ * The name of the graph.
3659
3660
* @param collectionName
3661
+ * The collection, containing the vertex to replace.
3660
3662
* @param key
3663
+ * The key (document handle) of the vertex to replace.
3661
3664
* @param vertex
3662
- * @return
3665
+ * The object to replace the existing vertex.
3666
+ * @return DocumentEntity<T>
3663
3667
* @throws ArangoException
3664
3668
*/
3665
3669
public <T > DocumentEntity <T > graphReplaceVertex (String graphName , String collectionName , String key , Object vertex )
@@ -3672,13 +3676,21 @@ public <T> DocumentEntity<T> graphReplaceVertex(String graphName, String collect
3672
3676
* only run successfully if the vertex is contained within the graph.
3673
3677
*
3674
3678
* @param graphName
3679
+ * The name of the graph.
3675
3680
* @param collectionName
3681
+ * The collection, containing the vertex to replace.
3676
3682
* @param key
3683
+ * The key (document handle) of the vertex to replace.
3677
3684
* @param vertex
3685
+ * The object to replace the existing vertex.
3678
3686
* @param waitForSync
3679
3687
* Wait for sync.
3680
3688
* @param ifMatchRevision
3689
+ * If not null the revision of the vertex in the database has to be
3690
+ * equal to replace the document.
3681
3691
* @param ifNoneMatchRevision
3692
+ * If not null the revision of the vertex in the database has to be
3693
+ * different to replace the document.
3682
3694
* @return
3683
3695
* @throws ArangoException
3684
3696
*/
@@ -3706,11 +3718,15 @@ public <T> DocumentEntity<T> graphReplaceVertex(
3706
3718
* will only run successfully if the vertex is contained within the graph.
3707
3719
*
3708
3720
* @param graphName
3721
+ * The name of the graph.
3709
3722
* @param collectionName
3723
+ * The collection, containing the vertex to update.
3710
3724
* @param key
3725
+ * The key (document handle) of the vertex to be updated.
3711
3726
* @param vertex
3727
+ * The object to update the existing vertex.
3712
3728
* @param keepNull
3713
- * @return
3729
+ * @return DocumentEntity<T>
3714
3730
* @throws ArangoException
3715
3731
*/
3716
3732
public <T > DocumentEntity <T > graphUpdateVertex (
@@ -3736,15 +3752,23 @@ public <T> DocumentEntity<T> graphUpdateVertex(
3736
3752
* will only run successfully if the vertex is contained within the graph.
3737
3753
*
3738
3754
* @param graphName
3755
+ * The name of the graph.
3739
3756
* @param collectionName
3757
+ * The collection, containing the vertex to update.
3740
3758
* @param key
3759
+ * The key (document handle) of the vertex to be updated.
3741
3760
* @param vertex
3761
+ * The object to update the existing vertex.
3742
3762
* @param keepNull
3743
3763
* @param waitForSync
3744
3764
* Wait for sync.
3745
3765
* @param ifMatchRevision
3766
+ * If not null the revision of the vertex in the database has to be
3767
+ * equal to update the document.
3746
3768
* @param ifNoneMatchRevision
3747
- * @return
3769
+ * If not null the revision of the vertex in the database has to be
3770
+ * different to update the document.
3771
+ * @return DocumentEntity<T>
3748
3772
* @throws ArangoException
3749
3773
*/
3750
3774
public <T > DocumentEntity <T > graphUpdateVertex (
0 commit comments