com.aerospike.vector.client.StaticRoles Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of avs-client-java Show documentation
Show all versions of avs-client-java Show documentation
This project includes the Java client for Aerospike Vector Search for high-performance data interactions.
The newest version!
package com.aerospike.vector.client;
import java.util.Locale;
public enum StaticRoles {
/** Admin role that has the following privileges. - user management - index management */
ADMIN,
/** Temporary role, allows users to write vector data and use indices. */
READ_WRITE;
@Override
public String toString() {
return name().replace("_", "-").toLowerCase(Locale.getDefault());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy