All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aerospike.vector.client.StaticRoles Maven / Gradle / Ivy

Go to download

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