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

com.lambdaworks.redis.protocol.CommandKeyword Maven / Gradle / Ivy

// Copyright (C) 2011 - Will Glozer.  All rights reserved.

package com.lambdaworks.redis.protocol;

/**
 * Keyword modifiers for redis commands.
 *
 * @author Will Glozer
 */
public enum CommandKeyword {
    AFTER, AGGREGATE, ALPHA, AND, ASC, BEFORE, BY, COUNT, DESC, ENCODING, FLUSH,
    IDLETIME, KILL, LEN, LIMIT, LIST, LOAD, MAX, MIN, NO, NOSAVE, NOT, ONE, OR,
    REFCOUNT, RESET, RESETSTAT, STORE, SUM, WEIGHTS, WITHSCORES, XOR;

    public byte[] bytes;

    private CommandKeyword() {
        bytes = name().getBytes(Charsets.ASCII);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy