
com.arangodb.internal.DocumentFields Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core module for ArangoDB Java Driver
package com.arangodb.internal;
import java.util.Arrays;
import java.util.List;
public final class DocumentFields {
public static final String ID = "_id";
public static final String KEY = "_key";
public static final String REV = "_rev";
public static final String FROM = "_from";
public static final String TO = "_to";
private DocumentFields() {
}
public static List values() {
return Arrays.asList(ID, KEY, REV, FROM, TO);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy